图像链接在Internet Explorer中显示图像周围的边框

时间:2013-10-18 15:25:55

标签: html css internet-explorer

Internet Explorer中的图像链接存在问题。

我使用了以下代码:
<a href="link.html"><img src="image.jpg"></a>

现在图像周围有一个奇怪的边框。我试过a { text-decoration: none; },但它没有改变任何东西。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:4)

把它放在css中

a img{border:none;}

答案 1 :(得分:2)

当我遇到这个问题时,我会使用outline : none 看看它是否适合你。

area {
    outline : none;
}

如果你想覆盖多个元素