Created
May 28, 2020 17:17
-
-
Save lkmill/6588f8ac6b90c11c5625b61c330f72a0 to your computer and use it in GitHub Desktop.
vendor specific :any
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
/* does not work: */ | |
:-moz-any(article, aside, nav, section) > h1, | |
:-webkit-any(article, aside, nav, section) > h1 { | |
font-size: 2rem; | |
} | |
/* works: */ | |
:-webkit-any(article, aside, nav, section) > h1 { | |
font-size: 2rem; | |
} | |
:-moz-any(article, aside, nav, section) > h1 { | |
font-size: 2rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment