CSS overscroll-behavior-block Property Reference
The CSS overscroll-behavior-block property is a standard property in CSS Overscroll Behavior. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
overscroll-behavior-block overview
The CSS overscroll-behavior-block 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-block. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
overscroll-behavior-block: initial;
}
.inherit-example {
overscroll-behavior-block: inherit;
}
@supports (overscroll-behavior-block: initial) {
.supported {
overscroll-behavior-block: initial;
}
}