I noticed that my usage of the CSS3 calc() function as the unit for width is not working in the latest version of Chrome.
calc()
width
In the Chrome Deve
I struggled with calc property a bit and only below approach worked.
calc
-webkit-calc(~'100% - 40px'); // good: result 395px (in my application)
every above suggestions like:
-webkit-calc(100% - 40px); // bad: result 60%
ended up with wrong calculation like 60%.
Hope it helps somebody.