我使用此代码,在Firefox中运行良好,但在IE中未访问的链接是默认蓝色和访问链接是紫色?请帮忙,不是什么交易
a:link {
text-decoration:none;
color:transparent;
}
a:visited {
text-decoration: none;
color:transparent;
}
答案 0 :(得分:0)
关于此问题的一些Google搜索显示IE不支持颜色:透明。
尝试为IE执行此操作
a:link{color: transparent; width: 100%; filter: alpha(opacity=0)}
a:visited{color: transparent; width: 100%; filter:alpha(opacity=0)}
请注意,提供宽度似乎是不透明度生效所必需的