CSS -moz-user-input Property Reference
The CSS -moz-user-input property is a nonstandard property in Mozilla Extensions. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
-moz-user-input overview
The CSS -moz-user-input property is a nonstandard property in Mozilla 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 | auto | none | enabled | disabled |
| Initial value | auto |
| Applies to | allElements |
| Inherited | Yes |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | discrete |
| Media | visual |
| Specification group | Mozilla Extensions |
| Status | Nonstandard |
Practical examples
These declarations demonstrate valid ways to set -moz-user-input. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
-moz-user-input: initial;
}
.inherit-example {
-moz-user-input: inherit;
}
@supports (-moz-user-input: initial) {
.supported {
-moz-user-input: initial;
}
}