IE6 A颜色

a:link {color: #3E3E3E;text-decoration: none;}
a:visited {color: #3E3E3E;text-decoration: none;}
a:hover {color: #DE3616;text-decoration: none;}

.TitleLine a{
	color:#fff;
}

 

这个时候 在 IE6 下

在Firebug Lite 下的 style模式                            在 computed模式下

  

 

把 css 改成

a:link {color: #3E3E3E;text-decoration: none;}
a:visited {color: #3E3E3E;text-decoration: none;}
a:hover {color: #DE3616;text-decoration: none;}

.TitleLine a:link{
	color:#fff;
	text-decoration: none;
}
.TitleLine a:visited { 
	color:#fff;
	text-decoration: none;
}
.TitleLine a:hover { 
	color: #f00;
	text-decoration: none;
}

 

这时就可以了!A标签下的内容显示成红色了!

posted on 2010-11-13 10:46  frouds  阅读(1059)  评论(0编辑  收藏  举报