Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does CSS specificity decide which styles to apply?

How does CSS determine when to apply one style over another?

I have been through the W3 CSS3 selectors document a few times, and that has helped me understand how to better use CSS selectors in jQuery, but it has not really helped me understand when one CSS rule will be applied over another.

I have the following the HTML:

<div class='item'>
    <a>Link 1</a>
    <a class='special'>Link 2</a>
</div>

I have the following CSS:

.item a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1em;
}

.special {
    text-decoration: underline;
    color: red;
    font-weight: normal;
    font-size: 2em;
}

Given the above, both Link 1 and Link 2 will be styled the same, as determined by the .item a CSS. Why does the style associated with .special not take precedence for Link 2?

Obviously, I can get around it like this:

.special {
    text-decoration: underline !important;
    color: red !important;
    font-weight: normal !important;
    font-size: 1em !important;
}

But, I feel like that is a hack that I have to sprinkle in due to my lack of understanding.

like image 494
Jonathan Avatar asked Feb 03 '12 18:02

Jonathan


People also ask

How does CSS decide which rule to apply?

The specificity of a CSS rule depends on its selector. The more specific the CSS selector is, the higher is the precedence of the CSS property declarations inside the CSS rule owning the selector. In general terms, the more specifically (uniquely) a CSS selector targets an HTML element, the higher is its specificity.

How does CSS determine specificity specificity?

Memorize how to calculate specificity! Start at 0, add 100 for each ID value, add 10 for each class value (or pseudo-class or attribute selector), add 1 for each element selector or pseudo-element. Note: Inline style gets a specificity value of 1000, and is always given the highest priority!

How is CSS prioritized?

When multiple classes appear in a single selector, your browser simply adds up how many are listed. The more class selectors you have for a single declaration, the higher the priority.

When using a universal CSS selector What specificity score is given for the styles defined in that selector?

Inline style selectors are style rules defined in an HTML document using the style attribute. These selectors are given a specificity score of 1000 and, as such, take precedence over other selector types. ID selector selectors, like #modal , have a specificity score of 100.


3 Answers

It's based on IDs, classes and tags. IDs have the highest specificity, then classes then tags, so:

.item a     == 0 1 1      0 (id) 1 (class=item) 1 (tag=a)
.special    == 0 1 0
#foo        == 1 0 0
#foo .bar a == 1 1 1
#foo #bar   == 2 0 0

whichever has the most wins :) If it's a tie, whichever one comes last in the document wins. Note that 1 0 0 beats 0 1000 1000

If you want .special to apply, make it more specific: .item a.special

like image 120
Nobody Avatar answered Oct 13 '22 00:10

Nobody


I would suggest you get familiar with this for future reference. For this particular case, note point 3 under Cascading Order:

  1. Count the number of ID attributes in the selector.
  2. Count the number of CLASS attributes in the selector.
  3. Count the number of HTML tag names in the selector.

If these are applied to your code, .item a has 1 class attribute + 1 HTML tag name, while .special has only one class attribute. Hence, the former wins the right to style the special link.

like image 26
Artyom Avatar answered Oct 13 '22 00:10

Artyom


http://www.w3.org/TR/CSS21/cascade.html#specificity is the official specificity specification.

But if that's TL;DR, the (too) short version is the more words you have in your selector, the higher the specificity. And with !important even higher. That's about it.

Edit: oh, I see that your link has the same information as mine. Sorry about that.

like image 32
Mr Lister Avatar answered Oct 13 '22 01:10

Mr Lister