Looking at the CSS specificity specification, there is no mention about how many "points" the !important rule is worth.

When does one override another? What happens if one is declared after the other? Which rule is declared to be more important? Is there some sort of pattern?

From the looks of it, !important applies to what has more specificity points to begin with. But what will happen if I declare a bazillion id's stacked with classes and nested deeply? Will it override the rules set in another, less specified rule marked with !important?

link|improve this question

3  
Make sure you're writing property: value !important, and not important! (like in your question title) or property: value; !important (like in your first demo). In your second demo, you wrote div#green which is looking for <div id="green">, which does not exist in your demo. My point is that you need to ensure you understand more basic issues before worrying about the nuances of !important. – thirtydot Apr 27 '11 at 14:20
feedback

2 Answers

up vote 3 down vote accepted

Specificity in CSS only concerns selectors, not their associated declarations. !important applies to a declaration, so it plays no role in specificity.

However, !important influences the cascade, which is the overall calculation of styles for a certain element when more than one of the same property applies to it. Or, as Christopher Altman succinctly describes:

  1. !important is a spades card. It trumps all specificity points.

For two rules with unequal selectors in the same stylesheet (e.g. same user stylesheet, same internal author stylesheet, or same external author stylesheet), the rules with the most specific selector apply. If there are any !important styles, the one in the rule with the most specific selector wins.

Anyway, here are some other common occurrences of !important and how they're applied:

  • The !important declaration always overrides the one without it (except in IE6 and older):

    /* In <style> tags */
    #id {
        color: red !important;
        color: blue;
    }
    
  • If there is more than one !important declaration in a rule with the same level of specificity, the later-declared one wins:

    /* In <style> tags */
    #id {
        color: red !important;
        color: blue !important;
    }
    
  • If you declare the same rule and the same property in two different places, !important follows the cascading order if both declarations are important:

    /* In an external stylesheet */
    #id {
        color: red !important;
    }
    
    /* In an internal stylesheet */
    #id {
        color: blue !important; /* This one wins */
    }
    

For the following HTML:

<span id="id" class="class">Text</span>

If you have two different rules and one !important:

#id {
    color: red;
}

.class {
    color: blue !important;
}

That !important always wins.

But for this:

#id {
    color: red !important;
}

.class {
    color: blue !important;
}

The #id rule has a more specific selector, so that one takes precedence.

link|improve this answer
feedback

The way I think about it is this:

  1. !important is a spades card. It trumps all specificity points. To your specific question, the !important will override a bazillion id/classes.

  2. !important resets the cascade. So, if you use a !important below another !important, the second instance rules.

There is a more technical answer out there, but that is how I think about !important.

One more note, if you are using !important you need to step back and check if you are doing something wrong. !important implies you are working against the cascade of CSS. You should use !important in rare cases.

link|improve this answer
Evidence decides against your points. – Zirak Apr 27 '11 at 13:48
3  
Christopher Altman is correct. Looks like you have the !important incorrectly on the wrong side of the semicolon... also, your second selector is not selecting the div at all... it would just be inheriting from that selector which is why the first one is being used. – Mark Steggles Apr 27 '11 at 13:52
And what about this? – Zirak Apr 27 '11 at 14:04
+1 for the final point here -- if you're using !important a lot then you're probably doing something wrong. – Spudley Apr 27 '11 at 14:09
1  
@zirak - What about it? Your second CSS selector is looking for a div with id="green", which doesn't exist in your example. What exactly are you trying (and failing) to prove? – My Head Hurts Apr 27 '11 at 14:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.