Path: blob/main/files/en-us/web/css/-webkit-overflow-scrolling/index.md
4323 views
---
---
{{CSSRef}} {{Non-standard_header}}
The -webkit-overflow-scrolling
CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
Syntax
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 definition
{{CSSInfo}}
Formal syntax
Examples
HTML
CSS
Results
{{EmbedLiveSample('Examples')}}
Specifications
Not part of any standard. Apple has a description in the Safari CSS Reference.
Browser compatibility
{{Compat}}
See also
Safari 13 Release notes: Indicates the addition of support for one-finger accelerated scrolling to all frames and
overflow:scroll
elements, eliminating the need to set-webkit-overflow-scrolling: touch
.