On a simple mobile page, i tested on iOS safari have some overflow div using
div {position:absolute; right:-2em; /* or */ left: -3em;}
if i set the body using
body {width:100%; overflow-x: hidden;}
it only hide the scroll bar, but still able to pan to the right; but if I do
html {overflow-x: hidden;}
it dose the trick but make scrolling very laggy. prob something simple that i overlooked. thanks