csso-cli icon indicating copy to clipboard operation
csso-cli copied to clipboard

Support for CSS Nesting

Open raulillana opened this issue 1 year ago • 0 comments

Hey!

Actually CSS Nesting is not working when minifying files. The code just gets trimmed to the first element.

So a style.css like this.

html {
    width: 100%;
    height: 100%;
    
    body {
        background-color: grey;
    }
}

Will minify into this style.min.css.

html {
    width: 100%;
    height: 100%;
}

Any plans on supporting this in the near future?

REF: https://caniuse.com/css-nesting

raulillana avatar Jan 21 '25 08:01 raulillana