0

在我的网站中,徽标在 Firefox 和 chrome 中显示良好,但在 IE 中,出现蓝色边框。在此处输入图像描述

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

4 回答 4

1

添加“边框样式:无;” 到图像

于 2012-10-17T06:48:30.383 回答
1

在你的CSS中添加这个代码

img{
border-style:transparent;
}
于 2012-10-17T06:52:54.203 回答
1

在您的style属性中,添加:

border: none;

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

于 2012-10-17T06:53:02.023 回答
0

在您的 CSS 中,添加:

img {border: 0;}
a img, a:active img, a:focus img {outline: 0;}
于 2012-10-17T06:54:41.597 回答