解决办法1:
国外一设计师设计一脚本,可以使IE6支持hover focus。我们只需要在 <head> </head>添加以下代码
<!--[if lte IE 6]>
<style type="text/css">
body { behavior:url("csshover.htc"); }
</style>
<![endif]-->
并将csshover.htc文件放在站点下。IE6即可支持hover focus伪类。
csshover.htc下载
http://www.xs4all.nl/~peterned/htc/csshover3.htc
解决办法2:
用标签A模拟。。。
改变A的display为block
用li a:hover来实现li:hover的效果
···
···