css – calc issues on css minify
-
width: calc(100% - 2px);
would become
width:calc(100%-2px);
which is unacceptable value for the browser.
it should have space inside the calc, like this
width:calc(100% - 2px);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘css – calc issues on css minify’ is closed to new replies.