Skip to content

Instantly share code, notes, and snippets.

@jawinn
Last active February 10, 2023 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jawinn/82171f4b6f1e97ddadab8e2c9608f4e0 to your computer and use it in GitHub Desktop.
Save jawinn/82171f4b6f1e97ddadab8e2c9608f4e0 to your computer and use it in GitHub Desktop.
Alt Syntax for CSS Psuedo Element Content Property
/*
https://www.w3.org/TR/css-content-3/#alt
Support: https://caniuse.com/mdn-css_properties_content_alt_text
This particular element is presentational only, so an empty string
is used so that the symbol is not read by a screen reader.
*/
&:before {
content: "{" / "";
}
&:after {
content: "}" / "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment