I am building a phonegap app for ios and have vertical scroll issue. There appears to be a few pixels scroll in the webview even without any content and this is affecting my abs
For a latest answer (as of 2016), this solution was the most effective (smooth scrolling) for me in Cordova iOS.
.element {
overflow-y: scroll; /* has to be scroll, not auto */
-webkit-overflow-scrolling: touch;
}
Source: https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/