CSS overscroll-behavior-y Property Reference
The CSS overscroll-behavior-y property is a standard property in CSS Overscroll Behavior. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
overscroll-behavior-y overview
The CSS overscroll-behavior-y property is a standard property in CSS Overscroll Behavior. Review its formal syntax, computed behavior, and practical declarations.
The property is not inherited by default. Use an explicit global keyword when inheritance is intended.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | contain | none | auto |
| Initial value | auto |
| Applies to | nonReplacedBlockAndInlineBlockElements |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | discrete |
| Media | visual |
| Specification group | CSS Overscroll Behavior |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set overscroll-behavior-y. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
overscroll-behavior-y: initial;
}
.inherit-example {
overscroll-behavior-y: inherit;
}
@supports (overscroll-behavior-y: initial) {
.supported {
overscroll-behavior-y: initial;
}
}