Skip to content

Instantly share code, notes, and snippets.

@lkmill
Created May 28, 2020 17:17
Show Gist options
  • Save lkmill/6588f8ac6b90c11c5625b61c330f72a0 to your computer and use it in GitHub Desktop.
Save lkmill/6588f8ac6b90c11c5625b61c330f72a0 to your computer and use it in GitHub Desktop.
vendor specific :any
/* 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