If you need to play with :hover in IE, you can try effective approach that uses additional .htc file. To use :hover, for example in menu (li:hover), download htc file. Include this code
<!--[if IE]>
<style type="text/css">
BODY { behavior:url("way-to-file/csshover.htc"); }
</style>
<![endif]-->
between <head></head>. Thats all. Now you can write dynamic menu, color effects using this great pseudo-class :hover for ungrateful IE.
19-01-2007
Write a comment