Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been looking at the w3 page on css selectors and have not found any promising leads, so I thought I would ask...

Is there a way to style a single element with two classes differently than if it was one class?

Example:

<a class="foo">Red</a>
<a class="bar">Yellow</a>
<a class="foo bar">Orange</a>

a.foo { color:red; }
a.bar { color:yellow; }
a.foo.bar { color:orange; }
share|improve this question
If you're looking to style an element with two specified classes, there's your answer. If any two classes, I'm not so sure about that. – BoltClock Oct 12 '10 at 20:30
2  
What you have works. Note that IE6 does not support class overloading. It only recognizes the last class. – Jason McCreary Oct 12 '10 at 20:30
For an illustration of @Jason McCreary's point about IE6, see my answer to a duplicate of this question – BoltClock Oct 12 '10 at 20:31

3 Answers

up vote 2 down vote accepted

You just answered yourself. Be wary of the IE6 bug.

share|improve this answer
Thanks, I guess css is intuitive! – superUntitled Oct 12 '10 at 20:31

I just tried the code you put up, and it works fine (on Chrome at least). Maybe there is a mistake in your CSS elsewhere, or some other style is overriding it.

share|improve this answer

Yeah dude, you have just answered it yourself. Have a quick scan on these two pages -

  1. http://webdesign.about.com/od/css/qt/tipcssmulticlas.htm
  2. http://www.maxdesign.com.au/articles/multiple-classes/

Hope that helps :)

Nick

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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