How does it work? Here's sample from
Assuming we have the following selectors and properties.
h1 { color: black; }
p { color: black; }
This can be optimized like this.
h1, p {color: black; }
This is applicable to theme developers who separate their CSS typography, layout, color schemes and etc or anyone who would like to reduce their CSS file size.
Very easy isn't it? I will be applying this too.
No comments:
Post a Comment