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>
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"
There are differences between
#header .callout
and#header.callout
in css.Here is the "plain English" of
#header .callout
:Select all elements with the class name
callout
that are descendants of the element with an ID ofheader
.And
#header.callout
means:Select the element which has an ID of
header
and also a class name ofcallout
.You can read more here css tricks
I think you are all wrong. IDs versus Class is not a question of specificity; they have completely different logical uses.
IDs should be used to identify specific parts of a page: the header, the nav bar, the main article, author attribution, footer.
Classes should be used to apply styles to the page. Let's say you have a general magazine site. Every page on the site is going to have the same elements--header, nav, main article, sidebar, footer. But your magazine has different sections--economics, sports, entertainment. You want the three sections to have different looks--economics conservative and square, sports action-y, entertainment bright and young.
You use classes for that. You don't want to have to make multiple IDs--#economics-article and #sports-article and #entertainment-article. That doesn't make sense. Rather, you would define three classes, .economics, sports, and .entertainment, then define the #nav, #article, and #footer ids for each.
Won't work when the doctype is html 4.01 though...
In your stylesheet:
Edit: These might help, too:
and, per your example:
Edit, 4 years later: Since this is super old and people keep finding it: don't use the tagNames in your selectors.
#content.myClass
is faster thandiv#content.myClass
because the tagName adds a filtering step that you don't need. Use tagNames in selectors only where you must!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:
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:
Make sense?