When I try to use left: -webkit-calc(100% - 100px); (assuming that left: 0; is initial state) it works in iOS 6.0.1 just fine. But when I do the sa
left: -webkit-calc(100% - 100px);
left: 0;
None of the answers posted thus far worked for me.
What did work was working around the calc statement using negative margin:
calc
#example { left: 100%; margin-left: -100px; }