:hover not working on IE6??
IE6 only support CSS :hover for anchors (<a>). If you need implement .class:hover or element:hover or #id:hover, you can use this great, easy to use and non-invasive solution.
You just have to add this to your css:
/* .htc file must be relative to the .html file, not to the css file like background images */
body{ behavior: url("css/csshover.htc"); }
With this fix you can easily use techniques such as CSS sprites, and make it compatible with all the browsers, although you don’t know how I’d wish that IE6 die forever, maybe you do!





