Scrolling in IOS 5

The CSS property “overflow” lets you made scrollable the content inside an element. It adds the native OS’s scrollbar in almost all browsers except with IOS.
To do it you just need to use these two simple lines:

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

The scrollable element will have the native IOS scrollbar and scroll easing.

Random posts