Day 13: the :where() and :is() pseudo-classes

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
The :where() and :is() pseudo-classes allow you to write large lists of selectors in a more compact form. You can combine selectors instead of writing repetitive lists.Combining input types /* Before */ input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="password"], input[type="search"] { border: 2px...