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
Use -webkit prefix and spaces around the operator
-webkit
width: -webkit-calc(100% - 88px); width: -moz-calc(100% - 88px); width: calc(100% - 88px);