vote up 0 vote down star

I am using a piece of html something like the following:-

<a class="somePseudoClass" title="Blablabla">Something</a>

and I have the following css in an imported file.

a.somePseudoClass:hover 	{color: #000000; text-decoration: underline;}

This works perfectly in Firefox 2.0 but in IE6 the underline fails to show.

Does anyone know of a workaround?

flag
1  
The nomenclature here is a little misleading. ':hover', ':link', ':active', etc are considered pseudo-classes in CSS. Giving the actual class a name of 'somePseudoClass' is not a problem, but could possibly cause some confusion. – Andy Ford Nov 26 '08 at 15:34

4 Answers

vote up 7 vote down

Looks like you need a href attribute to make it work...

a.somePseudoClass         {text-decoration: none;}
a.somePseudoClass:hover   {color: #000000; text-decoration: underline;}
<a class="somePseudoClass" title="Blablabla" href="#" onclick="return false;">Something</a>
link|flag
+1 IE only honors pseudoclasses on hyperlinks but not anchors, which means you must have an href. – Adam Lassek Nov 26 '08 at 14:48
vote up 0 vote down

this should work, but it depends on what other CSS declarations you have (before and after it)

link|flag
vote up 0 vote down

How are you disabling the underline in the first place? Perhaps that is overriding this.

If you start with only your example on the page, and use text-decoration: underline, it seems to work fine. It's not IE, it's something else on your page.

link|flag
vote up 0 vote down

I just had this with ie6 and found this mssage here by googling. My problem was the line height was set to the same as the font height. FF, Chrome, Safari and ie8 all showed the underline, but ie6 was cutting it off, so no amount of searching for overriding css elements or whatever would have found this.

link|flag

Your Answer

Get an OpenID
or

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