CSS: calc() space removal invalidated
-
Your routine to minify the CSS is also stripping away necessary spaces in the calc() values.
e.g.
background-position-x: calc(100% + 1680px);
becomes
background-position-x:calc(100%+1680px);
which becomes an invalid CSS value — the spaces are required.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘CSS: calc() space removal invalidated’ is closed to new replies.