CSS -ms-scroll-translation Property Reference
The CSS -ms-scroll-translation property is a nonstandard property in Microsoft Extensions. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
-ms-scroll-translation overview
The CSS -ms-scroll-translation property is a nonstandard property in Microsoft Extensions. Review its formal syntax, computed behavior, and practical declarations.
The computed value normally inherits from the parent element when no declaration wins the cascade.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | none | vertical-to-horizontal |
| Initial value | none |
| Applies to | allElements |
| Inherited | Yes |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | discrete |
| Media | interactive |
| Specification group | Microsoft Extensions |
| Status | Nonstandard |
Practical examples
These declarations demonstrate valid ways to set -ms-scroll-translation. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
-ms-scroll-translation: initial;
}
.inherit-example {
-ms-scroll-translation: inherit;
}
@supports (-ms-scroll-translation: initial) {
.supported {
-ms-scroll-translation: initial;
}
}