-
:is(article, .post) h1 { … } :where(article, .post) h1 { … } They select the same things: article h1, .post h1 { … } but: - is() uses the specificity of it's most specific argument (the .post class) - where() always uses a specificity of zero svoisen/1257435911656296451