IE6下整站的bug详解

《1》文字不居中:加一个行高;

《2》png文件作为背景不显示:

<!--[if IE 6]>
<script src="js/DD_belatedPNG_0.0.8a.js"></script>
<script>
DD_belatedPNG.fix('*');在这个地方可可加入div 或是p
</script>
<![endif]-->

有的时候尽管加了这些业会出现1个像素的露头,需要吧背景图片不应png文件格式

《3》文件鼠标点过去不出现小手:

gei a标签

设置光标的形状:cursor:pointer;

《4》li虽然设置了li{list-style:none}text-decoration:none;内容下面还有下划线

list a { display:block; height:27px; line-height:27px; border-bottom:1px solid #fff; color:#434343; text-decoration:none; font-weight:bold; font-size:12px; padding-left:32px; }
.list a:hover { color:#b20e00; border-bottom:1px solid #b20e00; background:#fae191; text-decoration:none; }

在鼠标移入移出都要加上text-decoration:none;

原文地址:https://www.cnblogs.com/hduhdc/p/5244513.html