我有以下链接的CSS代码:
a {
text-decoration: none;
color: #248AC9;
}
a:hover {
color: #8DCFF7;
}
问题是,在Internet Explorer中,图像具有奇怪的边框,颜色与“颜色”相同。我该如何解决这个问题,并正确地绘制图像。 HTML代码很简单:
<a href="calculator-operators.htm"><img src="img/link.png" /></a>
那么,我该如何解决这个问题?
答案 0 :(得分:36)
只为图片指定无边框:
a > img{
border: 0;
}
答案 1 :(得分:6)
答案 2 :(得分:3)
这是我看到的一个旧帖子,但我想,为什么不呢。使用border:none;
:
a img {
border:none;
}
答案 3 :(得分:0)
只需将所有图像的边框设置为0 px
img { border: 0px }
答案 4 :(得分:-2)
尝试
a {
text-decoration: none;
border:0;
color: #248AC9;
}