Slide 25
Slide 25 text
postcss-custom-selectors (W3C specs)
github.com/postcss/postcss-custom-selectors
@custom-selector
:--heading h1, h2, h3, h4, h5, h6;
article :--heading + p {
margin-top: 0;
}
article h1 + p,
article h2 + p,
article h3 + p,
article h4 + p,
article h5 + p,
article h6 + p {
margin-top: 0;
}