Firefox Tomorrow

css pseudo class

`:-moz-suppressed` CSS pseudo-class

View on MDN ↗

The :-moz-suppressed CSS pseudo-class is a Mozilla extension that matches elements representing images that were suppressed because loading images from the specified site has been blocked.

[!NOTE] This selector is mainly intended to be used by theme developers.

Syntax

:-moz-suppressed {
  /* ... */
}

Examples

Styling elements that have been blocked

:-moz-suppressed {
  background: yellow;
  padding: 8px;
}

Specifications

Not part of any standard.

See also