← Chrome 150 reference

v150 · css · shipped

overscroll-behavior: chain

Chrome 150 adds a fourth value — chain — to the overscroll-behavior CSS property. Unlike the existing values, chain allows scroll chaining to propagate to ancestor scrollers while suppressing the local boundary visual effect (such as the iOS rubber-band bounce). Ships in Chrome 150 on desktop, Android, and WebView.

at a glance

Shipped inChrome 150 (desktop, Android, WebView)
StatusEnabled by default
Finch flagCSSOverscrollBehaviorChain
SpecCSS Overscroll Behavior Module Level 1 (CSSWG issue #13370)
ChromeStatus5176802466201600 — overscroll-behavior: chain

background

The overscroll-behavior property controls two distinct aspects of what happens when a scroll container hits its boundary:

Before Chrome 150, the existing three values did not cover the combination of chaining allowed but no local bounce:

ValueScroll chainingLocal boundary effect
autoYesYes
containNoYes
noneNoNo
chain (new)YesNo
Source: overscroll-behavior-chain explainer (vmpstr).

use case: side menu that scrolls through

A common pattern is an overlay drawer or side menu that is itself scrollable. The desired behaviour: when the user reaches the end of the menu's content, scrolling should continue to the page behind it — but the menu itself should not bounce or translate.

With auto, the menu would bounce at its boundaries before chaining. With contain, scroll never chains to the page. Only chain provides the desired combination:

.side-menu {
  overflow-y: auto;
  overscroll-behavior-y: chain;
}

syntax

chain is accepted wherever overscroll-behavior values are accepted:

/* shorthand — applies to both axes */
overscroll-behavior: chain;

/* longhand — set per axis */
overscroll-behavior-x: chain;
overscroll-behavior-y: chain;

/* block/inline logical variants */
overscroll-behavior-block: chain;
overscroll-behavior-inline: chain;

comparison with contain

The difference between chain and contain is solely whether scroll propagates:

Both suppress the local boundary visual effect (bounce or rubber-band stretch) on the element itself.

browser support

Chrome / Edge150 (desktop, Android, WebView)
FirefoxNo signal
SafariNo signal
Source: chromestatus.com browser positions, May 2026.

see also