<p>目前的浏览器大都支持各标签的hover效果,但,IE6,你懂的,只支持a标签的伪类效果,解决这个不兼容的情况呢,就要加一个文件了,csshover.htc。</p>
<p>实例演示:</p>
<style type=”text/css”>
body{behavior:url(“csshover.htc”);margin:0;padding:0;}
.main{width:500px;height:500px;}
.main ul{margin:0;padding:0;}
.main li{list-style:none;width:500px;height:30px;border-bottom:1px #CCC dashed;}
.main li:hover{background-color:#CCC;}
</style>
<style type=”text/css”>body{behavior:url(“csshover.htc”);margin:0;padding:0;}.main{width:500px;height:500px;}.main ul{margin:0;padding:0;}.main li{list-style:none;width:500px;height:30px;border-bottom:1px #CCC dashed;}.main li:hover{background-color:#CCC;}</style>
<p>标红的地方为关键所在,加入了个csshover.htc文件,这样在IE6下各标签也可以放心的使用hover了。</p>
转载请注明带链来源:春语精椿