I'd like to integrate a theme tag to my elements so they appear in diffrent colours. But since the css selectors have the same css specificity the latest overrides the earlier defined rule.

this is an example that shows my problem:

....
<div class="red">
  <div class="box">This should be red</div>
  <div class="yellow">
    ...
        <div class="box">This should be yellow (nested in x levels under the div.yellow)</div>
    ...
</div>
....

and here my css

.box { width: 100px; height: 100px; }
.yellow { background-color: yellow; }
.red { background-color: red; }

the box should be listed somewhere, but as soon as it is a sub child of another color definition it should been overwritten.

thanks for any help!

//jim

link|improve this question
is this dynamically made?? if not just use : class="box yellow" as its class – Treby Dec 15 '09 at 7:55
It is yellow. I'm guessing the problem is elsewhere. Probably involving all the content of .yellow being floated or .box being absolutely positioned. Whatever the issue is, it isn't with the code you've shown us. – Quentin Dec 20 '09 at 14:02
feedback

4 Answers

You shouldn't really be doing things this way -- if your theme changes, then suddenly things with class yellow may actually be blue, for example. I would suggest finding a common way of naming things (even if it's just colour1, colour2, colour-highlight...) and then specifying those styles. You can then look into the way your pages are designed and make the rules more specific as necessary (either by using !important or by making the rule more specific, e.g. .colour1 becoming .box .colour1 or div.colour1).

link|improve this answer
Thanks for your response. I agree that doing things this way is not good practice. The code was just a simple example because my elements and code are more complicated. – jim red Dec 15 '09 at 11:07
feedback

Try:

.box { background-color: inherit;  }

See: http://jsbin.com/imube/edit

link|improve this answer
feedback

I don’t quite see the problem. Here’s what I get with that code:

alt text

link|improve this answer
feedback

You probably need to use CSS's !important keyword eg:

.yellow { background-color: yellow !important;}
link|improve this answer
1  
That would overwrite the settings but is bad practice. – Jonny Haynes Dec 15 '09 at 8:31
I don’t think it would solve the problem either. If you just put !important on the yellow class, then yellow will always take precedence, regardless of nesting. If you put it on all the colour classes, then you’re back where you started. – Paul D. Waite Dec 20 '09 at 14:00
feedback

Your Answer

 
or
required, but never shown

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