Smooth vertical Scrolling in iPhone/iPad


CSS property “-webkit-overflow-scrolling” controls momentum-based scrolling in touch devices Android/Ipad/Iphone for a given UI element.

overflow:scroll may not work when you try to scroll on iPhone/iPad a div content. To fix this add the following CSS to HTML element:

 div {
 overflow:scroll
-webkit-overflow-scrolling: touch;
} 
OR
.section-class {

 overflow:scroll
-webkit-overflow-scrolling: touch;


}