Created
June 16, 2022 08:51
-
-
Save gmcusaro/deaf707d54cd00bbdcd16e556449fc1f to your computer and use it in GitHub Desktop.
:is() pseudo class
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
.section h1, | |
.section .text, | |
.section p { | |
/* your code*/ | |
} | |
/* can be simplified as */ | |
.section :is(h1, .text, p) { | |
/*your code*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment