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

If I have the following div

<div class="sectionA" id="content">
Lorem Ipsum...
</div>

Is there a way to define a style that expresses the idea "A div with id='content' AND class='myClass'"?

Or do you have simply go one way or the other as in

<div class="content-sectionA">
Lorem Ipsum...
</div>

or

<div id="content-sectionA">
Lorem Ipsum...
</div>
share|improve this question
1  
if you're going to select by id then there is no need to select by class also, because id is unique so only one element will match. So by adding the class to the same selector is just extra typing – TStamper Jun 22 '09 at 16:57
5  
@TStamper: Not necessarily. You're thinking only in terms of static documents. Case in point, you may have an img#Inbox icon on your page that is normally set to 50% opacity. However, when the user has a message, you want it to be set to 100% opacity, and the backend indicates this by adding an active class to the element. In such a scenario, it does make sense to have a selector that combines both ID and classname. – Lèse majesté Jun 7 '12 at 22:33
@TStamper: Also, doesn't having the more specific id+class combo selector gives it more weight/precedence than the id version alone? AFAIK, it should. (IOW, the id+class combo selector's rules will override the id combo selector's rules. (This was my reason/need for finding this thread just now.) – govinda Jan 1 at 6:30

7 Answers

up vote 48 down vote accepted

In your stylesheet:

div#content.myClass

Edit: These might help, too:

div#content.myClass.aSecondClass.aThirdClass /* Won't work in IE6, but valid */
div.firstClass.secondClass /* ditto */

and, per your example:

div#content.sectionA
share|improve this answer
8  
Specifying that the ID belongs to a div can only be detrimental to the rendering performance (albeit pretty much negligible) without any benefit to it as an ID is already unique. I'd go with #content.myClass instead to make it clean. – mystrdat Mar 29 '12 at 13:26

An ID and class combination is perfectly fine and very handy while styling 2.0 apps and their behavior-based styles, the "you shouldn't need to" comments are irrelevant to the case.

share|improve this answer
A good point, but it should be a comment, not an answer :) – Stephen Holt Mar 13 '12 at 16:33
My apologies Bob, but I didn't have enough points to comment before. – mystrdat Mar 29 '12 at 13:19

Ids are supposed to be unique document wide, so you shouldn't have to select based on both. You can assign an element multiple classes though with class="class1 class2"

share|improve this answer
1  
The class can change. Per example, you can have div#id.active and div#id.inactive. – Daniel Moura Jun 22 '09 at 16:49
fair enough, come to think of it, I have used this functionality, but I misunderstood what the desired behavior was. – Ben Hughes Jun 22 '09 at 16:58

You can combine ID and Class in CSS, but IDs are intended to be unique, so adding a class to a CSS selector would over-qualify it.

share|improve this answer
That's a good point. I'm thinking if maybe you have a set of very general classes (setting things like float, height/width, maybe things like font) and you'd like to override something in them in this unique exception? – ajm Jun 22 '09 at 16:49
4  
Unless you use the same stylesheet with different pages. :-) – Patrick McElhaney Jun 22 '09 at 17:16
4  
Another example: when classes are added dynamically with Javascript (#optionalFields.enabled) – Patrick McElhaney Jun 22 '09 at 17:22
Even if you use the same stylesheet with different pages, it'd really be better to put a class on the body or have one style for the ID and then separate class definitions for the classes with the appropriate overriding styles. – Eric Wendelin Jun 22 '09 at 20:49
Yeah, I think it is fairly common to do this. e.g li#SomeTab.state-selected – Yablargo Feb 27 at 18:00
show 1 more comment

Well generally you shouldn't need to classify an element specified by id, because id is always unique, but if you really need to, the following should work:

div#content.sectionA {
    /* ... */
}
share|improve this answer

There's nothing wrong with combining an id and a class on one element, but you shouldn't need to identify it by both for one rule. If you really want to you can do:

#content.sectionA{some rules}

You don't need the div in front of the ID as others have suggested.

In general, CSS rules specific to that element should be set with the ID, and those are going to carry a greater weight than those of just the class. Rules specified by the class would be properties that apply to multiple items that you don't want to change in multiple places anytime you need to adjust.

That boils down to this:

 .sectionA{some general rules here}
 #content{specific rules, and overrides for things in .sectionA}

Make sense?

share|improve this answer
.sectionA[id='content'] { color : red; }

Won't work when the doctype is html 4.01 though...

share|improve this answer
That's not true. – BoltClock Apr 23 at 17:27

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.