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:
!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.
property: value !important, and notimportant!(like in your question title) orproperty: value; !important(like in your first demo). In your second demo, you wrotediv#greenwhich 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