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 the following:

<a class="nav disabled">Test</a>

Is there some way I can specify the background-color if the address has BOTH the "nav" and "disabled" class markers? In other words a selector that will select only the last of the three below:

<a class="nav">Test1</a>
<a class="disabled">Test2</a>
<a class="nav disabled">Test3</a>
share|improve this question
possible duplicate of CSS Selector that applies to elements with two classes – BoltClock Sep 10 '11 at 13:32

3 Answers

up vote 5 down vote accepted

Yes.

.nav.disabled { .... }

this has side effects in IE6, but is otherwise supported by every browser.

share|improve this answer

Concatenate the class selectors:

a.nav.disabled
share|improve this answer

CSS rule for

<a class="nav disabled">Test3</a>

is

a.nav.disabled {}

or

.nav.disabled {}
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.