I've recently discovered that using the following css element:
-webkit-overflow-scrolling: touch;
provides native scrolling on ios devices, which seems to be working well for me.
However, I'm wondering if there's a way to disable the "overscroll" effect. Specifically, when the scroll position is at zero and you continue dragging downwards, causing the top of my content to move down slightly and reveal white space above it. The content snaps back up when you release your finger. Is there a way to eliminate just that aspect?
I also came across information stating that Apple introduced this feature with a bug related to rendering, and suggested a hack fix using:
-webkit-transform: translate3d(0,0,0);
Does anyone know if this issue was resolved with ios6?