vote up 1 vote down star

It seems elementary, but here is problem.

Stylesheet like so:

#Content h1, #Content h2, #Content h3, #Content h4, #Content h5, #Content h6 {
  color: #405679;
}

h3#issueHeader {
  color: blue;
}

HTML like so:

<div id="Content">
  <h3 id="issueHeader">In This Issue:</h3>
</div>

Instead of my issueHeader selector overriding the Content selector like I would expect, Firebug and my eyeballs show me that the color is inherited from the div, and the issueHeader selector is overridden. Hunh?

flag

Google "CSS selector specificity" or some such. Or have a quick look at stuffandnonsense.co.uk/archives/images/… – RegDwight Jul 28 at 20:40
Thanks for all the responses. CSS is not my strong point. Zack, I upvoted you for being first, but I picked dnagirl because her answer gave a little more explanation as to why this is so. – Jergason Jul 28 at 20:43
Re RegDwight - I asked The Google first, but sometimes it is hard to find the specific answer you are looking for in the mountain of responses. That link is a great resource though, thanks. – Jergason Jul 28 at 20:45

5 Answers

vote up 7 vote down check

css gives more weight to elements with more selectors. So if you want #Content h3 not to override h3#issueHeader, give it another selector: e.g. #Content h3#issueHeader

If your h1...hx elements are meant to be generally #405679, set them to that without the #Content selector. Then override them with a more specific selector when you need to.

link|flag
vote up 2 vote down

You can throw the !important attribute on h3#issueHeader to force the browser to use that style

h3#issueHeader {
  color: blue !important;
}

However, it is only partially supported in IE6


Additionally, this should only be used as a last resort to the other solutions purposed. This is because if users of your website want to override your style, important becomes a useful tool for that. See this article: Don't use "!important"

link|flag
2  
Using the !important should only be a last resort. In this case, using a more specific selector works also. – Zack Jul 28 at 20:30
@Zack - Thanks for that; I wasn't sure why it ought not to be used and did some googling. I've updated my answer accordingly. – LFSR Consulting Jul 28 at 20:43
vote up 3 vote down

Try setting the selector as:

#Content h3#issueHeader {
    color: blue;
}

This should fix it.

link|flag
vote up 0 vote down

If id="issueHeader" is duplicated that could do it.

link|flag
I assume you mean if it is used in more than one style? Nope, I am not doing that. It is a very small stylesheet, so it's easy to check. – Jergason Jul 28 at 20:40
vote up 0 vote down

You are having what's called CSS specificity. Here's a good writup (using starwars to boot), that explains the basics in terms of points and how to calculate what will cascade:

http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html

link|flag

Your Answer

Get an OpenID
or

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