Just wondering when you use multiple classes on the one element such as class="foo bar" and those classes are setup as below:

.foo {
    margin-right: 10px;
}


.bar {
    margin-right: 0px;
}

Which class will have specificity? Will the margin be 10px or 0px?

Thanks!

link|improve this question

@Rionmonster has a good answer. But for additional info, you might want to read this. 3nhanced.com/css/battle-of-the-selectors-specificity – jessegavin Dec 9 '11 at 20:54
feedback

3 Answers

up vote 6 down vote accepted

It works based on precedence within the CSS. Therefore the item to occur most recently will override any previous styles.

CASE 1

.foo  { background : red; }
.bar  { background : blue; }

class = 'foo bar' would be blue in this instance.

CASE 2

.bar  { background : blue; }
.foo  { background : red; } 

class = 'foo bar' being would be red in this instance.

Working Example

link|improve this answer
Great thanks. I think I got it, but since you named your classes red and blue rather than foo and bar it's a little confusing which is which haha – Brett Dec 9 '11 at 21:00
I changed it for you :) – Rion Williams Dec 9 '11 at 21:02
feedback

A single class name carries the same weight. In such a scenario, the rule that is listed first will be overwritten by the second, and hence, the element will have margin-right: 0px;

Here is a simple example using color instead of margin, because it's easier to visualize. The value specified in bar will be chosen by the browser.

link|improve this answer
Thanks a lot!!! – Brett Dec 9 '11 at 21:01
feedback

In addition, more "specific" class will override a more generic one:

HTML:

<div class="foo">
    <div class="bar">Hello World!</div>
</div>

With the following CSS:

.foo .bar { margin-left:25px }
.bar { margin-left:0px }

Notice how the inner div still has 25px margin to the left?

Also, read up on "!important" argument after providing the value:

.bar { margin-left:0px!important }

Check out

link|improve this answer
Yeah..... already knew about the specificity between more "specific" stuff, just wasn't sure about using two classes that weren't any more specific. – Brett Dec 9 '11 at 21:04
feedback

Your Answer

 
or
required, but never shown

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