Created
January 17, 2012 13:21
-
-
Save StanAngeloff/1626600 to your computer and use it in GitHub Desktop.
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
#page :matches(h1, h2, h3, h4, h5, h6) a { color: red; } | |
// compiles down to | |
#page h1 a, | |
#page h2 a, | |
#page h3 a, | |
#page h4 a, | |
#page h5 a, | |
#page h6 a { color: red; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment