CSS - -webkit-overflow-scrolling

The -webkit-overflow-scrolling CSS property controls whether or not touch devices use momentum-based scrolling for the given element.

Example

 

CSS
-webkit-overflow-scrolling: touch; /* lets it scroll lazy */

-webkit-overflow-scrolling: auto; /* stop scrolling immediately */

Description  

The -webkit-overflow-scrolling CSS property controls whether or not touch devices use momentum-based scrolling for the given element.

Value not found in DB!

Browser Compatibility  

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support ? Not supported ? ? ?
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support ? Not supported ? ? 5.0

Specifications  

Not part of any specification. Apple has a description in the Safari CSS Reference.

Values

auto
Use "regular" scrolling, where the content immediately ceases to scroll when you remove your finger from the touchscreen.
touch
Use momentum-based scrolling, where the content continues to scroll for a while after finishing the scroll gesture and removing your finger from the touchscreen. The speed and duration of the continued scrolling is proportional to how vigorous the scroll gesture was. Also creates a new stacking context.

Formal syntax

CSS
Syntax not found in DB!

See Also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/-webkit-overflow-scrolling

CSS CSS Property CSS Reference NeedsBrowserCompatibility NeedsLiveSample NeedsMobileBrowserCompatibility Non-standard