css / csso

CSS minifier with structural optimizations
https://css.github.io/csso/csso.html
MIT License
3.74k stars 189 forks source link

Media queries using calc are completely removed #483

Open viruseg opened 1 month ago

viruseg commented 1 month ago

A media query using calc like this is perfectly valid in the browser, but is completely removed from the minified version of the css file.

@media screen and (min-width: calc(300px + 760px + 20px + 200px))
{
    .anyClass
    {
        display: block;
    }
}