I was checking some posts on this site, but still can't find the solution.
Here's my html:

<div id="id1">
  <div id="id2">
    <div id="id3">
      <a id="id4" class="divItem">
        text
      </a>
    </div>
  </div>
</div>

and css:

#id1 {
width:960px;
margin:auto;
}

#id2 {
position:relative;
font-family:Calibri;
}

#id3 {
float:right;
position:relative;
margin-bottom:10px;
font-size:12px;
color:#5E666D;
}

.divItem {
float:left;
margin-right:10px;
}

a.divItem:hover {
color:#AD8E5A;
font-size:11px;
}

But the hover on divItem doesn't appear in internet explorer, only in safari and firefox and chrome.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Internet Explorer 6 can interpret :hover only on a elements with a href attribute. You are missing the attribute.

There's a fix that makes :hover work as it does in other browsers.

link|improve this answer
It is not working without the space either :( – Infinite Possibilities Nov 3 '10 at 11:34
but yes, the space was in plus, thank you! – Infinite Possibilities Nov 3 '10 at 11:34
@Infinity does it work now? Which version of Internet Explorer are we talking about? Can you try a#id4:hover? – Pekka Nov 3 '10 at 11:36
1  
Nice one, Pekka I just came to this conclusion myself, jsfiddle.net/Kyle_Sevenoaks/AzgHw – Kyle Sevenoaks Nov 3 '10 at 11:46
1  
@Kyle nice! This is so weird. I mean, what sense does it make to look for the href if no other browser cares? Stuff like this is why people rightly hate IE. – Pekka Nov 3 '10 at 12:00
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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