
Originally Posted by
EricWatson
nope it doesnt seem to work in ie6.
IE6 only actions hover on anchors - that is a elements that have an href. If you just use <a > then you get no hover. You also need "haslayout" when using position:relative or IE6 doesn't know where its boundaries are. Lastly you need to action a change on hover first before you taget an inner element such as a span otherwise it doesn't work.
e.g These 3 fixes:
Code:
.tooltip:hover{visibility:visible}
.tooltip{zoom:1.0}
Code:
<a href="#" class="tooltip"><img ... etc
Bookmarks