Consider the following html:

<div id="rightBar">
    <div class="barElement">
        <div class="barText"><a href="#">Not underlined</a><br /></div>
        <div class="barLinks"><a href="#">Should be underlined</a></div>
    </div>
</div>

And the following css:

#rightBar a
{
    text-decoration: none;
}
#rightBar a.barLinks
{
    text-decoration: underline;
}

The 'Should be underlined' link is not underlined, shouldn't it be since it inherits both the class barLinks and the id rightbar. Also the '#rightBar a.barLinks' (0, 1, 1, 1) has more specificity than '#rightBar a' (0, 1, 0, 1), so it should override the latter right?

How else can I get the 'Should be underlined' link to be underlined without resorting to using any inline specifications (both css or html)

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Your a element does not have the class barLinks. Do this:

#rightBar .barLinks a
{
    text-decoration: underline;
}

example: http://jsfiddle.net/J34mj/2/

link|improve this answer
1  
yes, I agree this. #rightBar a.barLinks means only those a tags which have class attribute set to barLinks i.e. <a class='barLinks' ... – Waqas Raja Jul 1 '11 at 16:02
feedback

It's not a specificity issue, you are using the wrong selector. It should be this:

#rightBar .barLinks a {}
link|improve this answer
feedback
#rightBar a.barLinks
{
    text-decoration: underline;
}

Won't work because the class="barLinks" isn't on the <a>

Try this;

#rightBar .barLinks a
{
    text-decoration: underline;
}

Or failing that;

#rightBar .barLinks a
{
    text-decoration: underline !important;
}
link|improve this answer
feedback

It shouldn't be, the barLinks is only applicable to a tags, if you change your css to #rightBar .barLinks a it should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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