Skip to content

Instantly share code, notes, and snippets.

@Lego2012
Created February 25, 2024 14:50
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 Lego2012/b1851bd9542cef7a80d41bc8d928a6b8 to your computer and use it in GitHub Desktop.
Save Lego2012/b1851bd9542cef7a80d41bc8d928a6b8 to your computer and use it in GitHub Desktop.
/* Old way */
ul li a,
ol li a {
color: yellow;
}
/* Modern way */
:is(ul, ol) a {
color: black;
}
main h1,
main h2,
main h3 {
color: red;
}
main :where(h1, h2, h3) {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment