clean-css / clean-css-cli

The command line interface to clean-css CSS optimizer
MIT License
302 stars 17 forks source link

nth-child `1 of x` space removal #90

Open ernieayala opened 1 year ago

ernieayala commented 1 year ago

When using a selector such as :nth-child(1 of .item) it is compressed down to :nth-child(1of.item) thus breaking the selector.

XIYU11864 commented 8 months ago

@ernieayala You can use -O0. This leval remove most line breaks and spaces but dosen't break something like :nth-child(1 of .item). Or you can use https://github.com/clean-css/clean-css#how-to-keep-a-css-fragment-intact .