offline version v3


110 of 298 menu

!important flag

The !important flag gives precedence to a style or any CSS property for which it is specified.

Syntax

selector { property: value !important; }

Example

Let's make blue paragraph font color take precedence over green color:

<div>text</div> div{ color: blue !important; width: 600px; height: 100px; font-size: 20px; } div { color: green; }

:

See also

  • the @import at-rule
    that imports a CSS file
  • the @media at-rule
    that specifies a style for a media type
  • the @supports at-rule
    that sets a style for elements whose capabilities are supported by the browser
enru