IE中的图像边框错误

时间:2012-10-17 06:46:01

标签: css internet-explorer

在我的网站中,徽标在Firefox和Chrome中显示正常,但在I.E中,会出现蓝色边框。enter image description here

<img src="images/logo.png" style = "position:relative; top:40px;">

4 个答案:

答案 0 :(得分:1)

添加“border-style:none;”到图像

答案 1 :(得分:1)

在你的css中添加此代码

img{
border-style:transparent;
}

答案 2 :(得分:1)

style属性中,添加:

border: none;

IE为链接中的图像添加蓝色边框。这是一件坏事。

答案 3 :(得分:0)

在CSS中添加:

img {border: 0;}
a img, a:active img, a:focus img {outline: 0;}