Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible in jQuery or CSS (since I think they use the same selector logic) to say select elements that have multiple classes. For example:

<div class='class1'></div>
<div class='class2'></div>
<div class='class1 class2'></div>

Is there a way I can say I want elements that are of both class1 and class2 (therefore only get the third div in this case)?

share|improve this question

1 Answer

up vote 9 down vote accepted

The selector you are looking for is .class1.class2

For more info, check out the spec: http://www.w3.org/TR/CSS2/selector.html#class-html

share|improve this answer
1  
If you care about IE6, it (unsurprisingly) treats .class1.class2 exactly like .class2, see here for more: stackoverflow.com/questions/3772290/… Either way this is the correct selector. (Not an issue if you're using jQuery, though, only with pure CSS.) – BoltClock Jan 3 '11 at 0:41
2  
For IE6, there is IE7.js code.google.com/p/ie7-js – Šime Vidas Jan 3 '11 at 0:48

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.