If you have a scrollable div using overflow: auto or overflow: scroll, you will notice that the scroll is slow or choppy. To make the inline scroll smooth, just add the following in your css class:
E.g.
-webkit-overflow-scrolling: touch;
E.g.
#SCROLLABLE_DIV { height: 300px; overflow: auto; -webkit-overflow-scrolling: touch; }
thanks for sharing
ReplyDelete