What browsers support "!important"?

15,158

Solution 1

Excellent browser support.

It was part of the CSS1 spec and has been around forever, and was always easy enough to implement that browsers appear to have gotten it right on the first try.

At the very least (from personal experience) IE5.5+, Firefox 1+, Safari 3+, Chrome 1+.

Pretty much supported by every browser that supports CSS (which is every browser you care about).

Solution 2

According to Wiki, IE7, FireFox 1.0, Safari 1.0, Opera 7, and Chrome fully support !important. IE6 supports it, but it does have a bug. If you do this, color will be red:

h1 {
  color: green !important;
  color: red;
}

Solution 3

Any browser which supports CSS1+ - ie, any browser that supports CSS - even IE. Even if the CSS implementations are not fully standards-compliant, !important is a core CSS feature.

To elaborate, IIRC, IE5+, all Firefox, most Netscape, Opera, Safari, Chrome.

Solution 4

All browsers apart from IE6 support it which makes it quite handy for CSS hacks. Example:

#someElement { width:200px !important; width:198px; }

All browsers apart from IE6 will render #someElement at 200px because they will honor the !important. IE6 however will just ignore the !important and render #someElement at 198px.

EDIT: Most common use case scenario for this (at least with me) is using it to correct the double margin bug in IE6

Share:
15,158
Daniel
Author by

Daniel

Updated on June 15, 2022

Comments

  • Daniel
    Daniel about 2 years

    Which browsers support the CSS !important directive, and what are the various quirks amongst the different browsers that do support it?