Consider the following code HTML:

<span class='c1'>Home<sup id='id1'>[2]</sup></span>

CSS:

.c1
{
    text-decoration:underline;
}
#id1
{
    text-decoration:none !important;
}

Now I expected Home to have an underline while the superscript [2] doesn't have the underline. But it so happens that the superscript is also getting the underline. What am i missing here??

http://jsfiddle.net/sasidhar/DTpEa/

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

If you think about it, the sup isn't underlined. but the span still is. Since the sup is inside the span, you see the underline which appears to be sup's underline.

Consider this demo: http://jsfiddle.net/mrchief/DTpEa/24/

You'll see that the id1 css does take precedence, but you still see the underline which is that of the span.

To solve it, have the sup outside of the span:

<span class='c1'>Home</span><sup id='id1'>[2]</sup>
link|improve this answer
I need a way around this. I don't mind if its webkit specific – sasidhar Aug 18 '11 at 20:26
I need the sup to remain inside the span while not having the underline. Possible? – sasidhar Aug 18 '11 at 20:28
You mean you can't rearrange the markup? I'm afraid you need a JS based solution then. – Mrchief Aug 18 '11 at 20:30
I would do fine with a js solution too. there is too much mess with the class of the span(updated by JS). So i would rather leave the markup as it is. – sasidhar Aug 18 '11 at 20:32
Are you using jQuery? If yes, the run this: $('#id1').detach().insertAfter('span.c1');. Let me know if you need a more generic solution (that doesn't rely on ids). jsfiddle.net/mrchief/DTpEa/25 – Mrchief Aug 18 '11 at 20:38
show 4 more comments
feedback

Here is a correct variant http://jsfiddle.net/rTUDN/

<div>
    <span class='c1'>Home</span>
    <sup id='id1'>[2]</sup>
</div>

.c1
{
    text-decoration:underline;
}
#id1
{
    text-decoration:none;
}
link|improve this answer
Y so? y can't the span element contain further elements? my actual code has more complex styling and is handled by js to add and remove different classes, so i am not interested in removing the superscript from the span – sasidhar Aug 18 '11 at 20:16
then even this could have worked..... jsfiddle.net/sasidhar/8S7LQ/1 – sasidhar Aug 18 '11 at 20:21
1  
@sasidhar Text is treated in blocks and styling ignores sub-elements (for the most part). CSS3's text-decoration-skip is designed to deal with this, but it isn't really implemented yet. – alex c Aug 18 '11 at 20:22
@sasidhar It seems, that you'll have to make your markup even more complex... – Webars Aug 18 '11 at 20:33
feedback

How about underlining the sup in the same color as your background? The span would be underlined and the sup underlining would overlay it.

link|improve this answer
too sad, background is an image.... :( – sasidhar Aug 18 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

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