The overscroll-behavior-y CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
See overscroll-behavior for a full explanation.
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2022.
The overscroll-behavior-y CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
See overscroll-behavior for a full explanation.
/* Keyword values */ overscroll-behavior-y: auto; /* default */ overscroll-behavior-y: contain; overscroll-behavior-y: none; /* Global values */ overscroll-behavior-y: inherit; overscroll-behavior-y: initial; overscroll-behavior-y: revert; overscroll-behavior-y: revert-layer; overscroll-behavior-y: unset;
The overscroll-behavior-y property is specified as a keyword chosen from the list of values below.
autoThe default scroll overflow behavior occurs as normal.
containDefault scroll overflow behavior (e.g., "bounce" effects) is observed inside the element where this value is set. However, no scroll chaining occurs on neighboring scrolling areas; the underlying elements will not scroll. The contain value disables native browser navigation, including the vertical pull-to-refresh gesture and horizontal swipe navigation.
noneNo scroll chaining occurs to neighboring scrolling areas, and default scroll overflow behavior is prevented.
| Initial value | auto |
|---|---|
| Applies to | non-replaced block-level elements and non-replaced inline-block elements |
| Inherited | no |
| Computed value | as specified |
| Animation type | discrete |
.messages {
height: 220px;
overflow: auto;
overscroll-behavior-y: contain;
}
See overscroll-behavior for a full example and explanation.
| Desktop | Mobile | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | |
overscroll-behavior-y |
63 | 18 | 59 | 50 | 16 | 63 | 59 | 46 | 16 | 8.0 | 63 |
auto |
63 | 18 | 59 | 50 | 16 | 63 | 59 | 46 | 16 | 8.0 | 63 |
contain |
63 | 18 | 59 | 50 | 16 | 63 | 59 | 46 | 16 | 8.0 | 63 |
none |
63 | 7918–79Thenone value incorrectly behaves as contain (allowing for the elastic bounce effect). |
59 | 50 | 16 | 63 | 59 | 46 | 16 | 8.0 | 63 |
© 2005–2024 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-y