vote up 2 vote down star

Is it possible, other than what I'm doing because it doesn't seem to work, to do this? I want to be able to have subclasses that are under a class to use the CSS specifically for that class.subclass.

CSS

.area1
{
	border:1px solid black;
}
.area1.item
{
    color:red;
}
.area2
{
    border:1px solid blue;
}
.area2.item
{
    color:blue;
}

HTML

<div class="area1">
    <table>
    	<tr>
    		<td class="item">Text Text Text</td>
    		<td class="item">Text Text Text</td>
    	</tr>
    </table>
</div>
<div class="area2"> 
    <table>
    	<tr>
    		<td class="item">Text Text Text</td>
    		<td class="item">Text Text Text</td>
    	</tr>
    </table>
</div>

So that I can just use class="item" for the elements under the parent css class "area1","area2". I know I can use class="area1 item" to get this to work, but I don't understand why it has to be so verbose about it. Shouldn't the css subclass look at what parent class it is under in order to define it?

Note: this works in IE (using 7 right now), but in FF it does not, so I'm assuming this isn't a CSS standard way of doing something.

flag

75% accept rate

8 Answers

vote up 20 vote down check

Just need to add a space:

.area2 .item
{
    ...
}
link|flag
that did it. I knew it had to be something simple like that. Thanks! – Rorschach Feb 17 at 21:18
I don't really use subclasses myself......can anyone give me a reason where this would be necessary? – patricksweeney Feb 18 at 4:12
Subclasses are just one more way of adding additional specificity to your CSS rules where it's appropriate. You can have a main class, but you can alter the rule for an element based on where it is in the document. – bigmattyh Feb 18 at 6:28
vote up 7 vote down

Your problem seems to be a missing space between your two classes in the CSS:

.area1.item
{
    color:red;
}

Should be

.area1 .item
{
    color:red;
}
link|flag
vote up 5 vote down

Just put a space between .area1 and .item, e.g:

.area1 .item
{
    color:red;
}

this style applies to elements with class item inside an element with class area1.

link|flag
vote up 3 vote down

do you want to force only children to be selected? http://css.maxdesign.com.au/selectutorial/selectors_child.htm

.area1
{
        border:1px solid black;
}
.area1>.item
{
    color:red;
}
.area2
{
    border:1px solid blue;
}
.area2>.item
{
    color:blue;
}
link|flag
Not what I was thinking, but this is good info for if I want only direct children. Thanks! – Rorschach Feb 17 at 21:20
vote up 5 vote down

Just put a space between your classes

.area1 .item
{
    ...
}

Here's a very good reference for CSS Selectors.

link|flag
vote up 4 vote down

FYI, when you define a rule like you did above, with two selectors chained together:

.area1.item
{
    color:red;
}

It means:

Apply this style to any element that has both the class "area1" and "item".

Such as:

<div class="area1 item">

Sadly it doesn't work in IE6, but that's what it means.

link|flag
vote up 0 vote down

you can also have two classes within an element like this

each item in the class is its own class

.item1 {

background-color:black; }

.item2 {

background-color:green; }

.item3 {

background-color:orange;

}

link|flag
vote up 1 vote down

That is the backbone of CSS, the "cascade" in Cascading Style Sheets.

If you write your CSS rules in a single line it makes it easier to see the structure:

.area1 .item { color:red; }
.area2 .item { color:blue; }
.area2 .item span { font-weight:bold; }

Using multiple classes is also a good intermediate/advanced use of CSS, unfortunately there is a well known IE6 bug which limits this usage when writing cross browser code:

<div class="area1 larger"> .... </div>

.area1 { width:200px; }
.area1.larger { width:300px; }

IE6 IGNORES the first selector in a multi-class rule, so IE6 actually applies the .area1.larger rule as

/*.area1*/.larger { ... }

Meaning it will affect ALL .larger elements.

It's a very nasty and unfortunate bug (one of many) in IE6 that forces you to pretty much never use that feature of CSS if you want one clean cross-browser CSS file.

The solution then is to use CSS classname prefixes to avoid colliding wiht generic classnames:

.area1 { ... }
.area1.area1Larger { ... }

.area2.area2Larger { ... }

May as well use just one class, but that way you can keep the CSS in the logic you intended, while knowing that .area1Larger only affects .area1, etc.

link|flag

Your Answer

Get an OpenID
or

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