Reputation: 55
YUI is stripping out whitespace between % and px like this
height: calc(100% + 30px)
Rules don't work without them.
How I can resolve this problem, if I need to use only this minifier?
Upvotes: 0
Views: 323
Reputation: 256
You could try:
height: calc(100%*1 + 30px)
The "times 1" prevents the collapse of the space. At least it does with AjaxMin.
Upvotes: 0