Is there anyway that I can write a css value as mathematical expression? Example:
div{ height: 50% + 30px; width: 40em - 5px; }
If t
Take a look at calc() function in CSS. Hopefully the support for this will increase in browsers.