Day 35: forgiving selectors

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
There's a difference between listing selectors in :where(), :is(), and :has() and listing them in a regular selector list.Let's say you have a button with the class .button and you apply the following styles. .button:hover { background-color: hwb(100 0% 20%); } I'm a button .button1:hover { background-color: hwb(100 0% 20%); } ...