在我的网站中,徽标在 Firefox 和 chrome 中显示良好,但在 IE 中,出现蓝色边框。
<img src="images/logo.png" style = "position:relative; top:40px;">
在我的网站中,徽标在 Firefox 和 chrome 中显示良好,但在 IE 中,出现蓝色边框。
<img src="images/logo.png" style = "position:relative; top:40px;">
添加“边框样式:无;” 到图像
在你的CSS中添加这个代码
img{
border-style:transparent;
}
在您的style
属性中,添加:
border: none;
IE 为链接中的图像添加蓝色边框。这是一件坏事。
在您的 CSS 中,添加:
img {border: 0;}
a img, a:active img, a:focus img {outline: 0;}