I\'ve used vh (viewport units) css in one of my projects but in mobile safari it doesn\'t work. It seems like Safari doesn\'t know what to do with vh, but it works fine in o
I used this CSS only hax today and it worked. iOS 8.2 iPhone Safari :
html, body { ... width: -webkit-calc(100% - 0px); ... }
Thought: Using calc seems to get Safari to convert units to px itself. Now my page is correctly full-bleed on Chrome and Safari on iOS.