As I understand elements are least specific. (element vs id). Please help me in understanding the specificity of selectors generally.

<div id="container">
    <div id="firstDiv">FIRST Div inside CONTAINER</div>
    <div id="secondDiv">SECOND Div inside CONTAINER</div>
</div>
body{
    width: 780px;
    margin: 20px auto;
}
#container > div:not(:last-of-type){
    margin-bottom: 0px; /*How its more specific than ID selector below? */
}
#container {
    border: 15px solid orange;
    padding: 10px;
}
#firstDiv{
    margin: 50px; /*This is not taking effect*/
    border: 5px solid blueviolet;
}
#secondDiv{
    border: 5px solid brown;    
}

http://jsfiddle.net/t2RRq/

link|improve this question

71% accept rate
1  
Have a look at w3.org/TR/CSS2/cascade.html#specificity. – Felix Kling Feb 16 at 12:26
feedback

2 Answers

up vote 4 down vote accepted

To understand CSS specificity, read The Specificity Wars. There’s a handy reference sheet, too:

So, a selector like #foo would have 1,0,0 specificity, while an element selector like p would have 0,0,1 specificity. Out of these two, the ID selector would “win” as 100 is greater than 1.

A more specific (heh) version which also includes pseudo-elements and pseudo-classes can be found here: http://www.standardista.com/css3/css-specificity/

link|improve this answer
How on earth have I not seen this?! This is brilliant. – BoltClock Feb 16 at 12:26
Specificity doesn't count ">" for direct child in its formula? – Shawn Taylor Feb 16 at 12:34
@ShawnTaylor Nope. – Mathias Bynens Feb 16 at 12:43
3  
@Shawn: Have a look at the last picture, where it says: *,+,>,~: The universal selector has no value and combinators do not increase specificity. Also I assume you have had a look at the specs by now and it is clearly defined how the specificity is computed, so no, it does not count. – Felix Kling Feb 16 at 12:43
@FelixKling: Thanks for making me understand all this concept easily. – Shawn Taylor Feb 16 at 13:07
feedback

When applying rules, selector specificity is calculated by counting all simple selectors (linked by any combinators), and not just the key selector. That means you're not just comparing these two selectors:

div
#firstDiv

But you're comparing these two selectors:

#container > div:not(:last-of-type)
#firstDiv

Here, the first selector is more specific because it has:

  • An ID selector, #container

  • A type (element) selector, div; and

  • A pseudo-class, which in this case is :last-of-type; the :not() pseudo-class itself doesn't count toward selector specificity

Whereas the second selector only consists of an ID. Note that combinators themselves like > in your first example don't count toward selector specificity.

There is an entire section in the Selectors spec covering how to calculate selector specificity.

link|improve this answer
Is there any formula to calculate their specificity weight? Because its strange that when and an element has ID specified and styled then why someone else is styling.. – Shawn Taylor Feb 16 at 12:28
@Shawn Taylor: I updated my answer with a link. – BoltClock Feb 16 at 12:29
@ShawnTaylor There is. See my answer. – Mathias Bynens Feb 16 at 12:29
@Shawn: Yes see the link in my comment. #container > div:not(:last-of-type) is 0-1-0-2 and #firstDiv is 0-1-0-0. – Felix Kling Feb 16 at 12:30
@FelixKling: Child symbol doesn't count anywhere? ">" – Shawn Taylor Feb 16 at 12:36
show 6 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.