W3TC minify breaks CSS calc attribute
-
When you use calc() with CSS, it needs spaces to work. Examples:
width:calc(100% + 30px); // works
width:calc(100%+30px); // does not workW3TC minifier removes the whitespaces, thus braking calc()
- The topic ‘W3TC minify breaks CSS calc attribute’ is closed to new replies.