Clean Up Repetition With :is() Pseudo-Class
/* before */
h1.text--bold, h2.text--bold, h3.text--bold, h4.text--bold, h5.text--bold {
font-weight: 500;
}
/* after */
:is(h1, h2, h3, h4, h5).text--bold {
font-weight: 500;
}PreviousCircular Icons With A Massive Border RadiusNextConditional Styling For Unsupported CSS Features
Last updated