CSS -moz-force-broken-image-icon Property Reference
The CSS -moz-force-broken-image-icon property is a nonstandard property in Mozilla Extensions. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
-moz-force-broken-image-icon overview
The CSS -moz-force-broken-image-icon property is a nonstandard property in Mozilla Extensions. 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 | 0 | 1 |
| Initial value | 0 |
| Applies to | images |
| Inherited | No |
| 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-force-broken-image-icon. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
-moz-force-broken-image-icon: initial;
}
.inherit-example {
-moz-force-broken-image-icon: inherit;
}
@supports (-moz-force-broken-image-icon: initial) {
.supported {
-moz-force-broken-image-icon: initial;
}
}