Last active
February 10, 2023 19:27
-
-
Save jawinn/82171f4b6f1e97ddadab8e2c9608f4e0 to your computer and use it in GitHub Desktop.
Alt Syntax for CSS Psuedo Element Content Property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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