-moz-force-broken-image-icon CSS propertyNon-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The -moz-force-broken-image-icon extended CSS property can be used to force the broken image icon to be shown even when a broken image has an alt attribute.
-moz-force-broken-image-icon: 1;
-moz-force-broken-image-icon: 0;
/* Global values */
-moz-force-broken-image-icon: inherit;
-moz-force-broken-image-icon: initial;
-moz-force-broken-image-icon: revert;
-moz-force-broken-image-icon: revert-layer;
-moz-force-broken-image-icon: unset;<integer>A value of 1 means that the broken image icon is shown even if the image has an alt attribute. When the value 0 is used, the image will act as usual and only display the alt attribute.
Note: Even if the value is set to 1 the alt attribute will still be displayed, alongside the broken image icon.
| Initial value | 0 |
|---|---|
| Applies to | images |
| Inherited | no |
| Computed value | as specified |
| Animation type | discrete |
-moz-force-broken-image-icon =
<integer>
<integer> =
<number-token>
<img src="/broken/image/link.png" alt="Broken image link" />img {
-moz-force-broken-image-icon: 1;
height: 100px;
width: 100px;
}Note: The alt text may not be visible if -moz-force-broken-image-icon is set to 1 and the image has no (or too small) height or width set.
alt attribute should be used instead.Not part of any standard.