在我的网站中,徽标在Firefox和Chrome中显示正常,但在I.E中,会出现蓝色边框。
<img src="images/logo.png" style = "position:relative; top:40px;">
答案 0 :(得分:1)
添加“border-style:none;”到图像
答案 1 :(得分:1)
在你的css中添加此代码
img{
border-style:transparent;
}
答案 2 :(得分:1)
在style
属性中,添加:
border: none;
IE为链接中的图像添加蓝色边框。这是一件坏事。
答案 3 :(得分:0)
img {border: 0;}
a img, a:active img, a:focus img {outline: 0;}