-
Notifications
You must be signed in to change notification settings - Fork 1
Mobile site
Sébastien LUCAS edited this page Jun 5, 2014
·
7 revisions
There is some changes needed when converting to mobile
-
Slow scroll on iphone ?
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:
#SCROLLABLE_DIV {
height: 300px;
overflow: auto;
-webkit-overflow-scrolling: touch;
}On the desktop the rule will appear as not applied, but it will be applied on mobile iphone