在我的網站中,徽標在firefox和chrome中顯示正常,但在I.E中顯示藍色邊框。 IE中的圖像邊框錯誤
<img src="images/logo.png" style = "position:relative; top:40px;">
在我的網站中,徽標在firefox和chrome中顯示正常,但在I.E中顯示藍色邊框。 IE中的圖像邊框錯誤
<img src="images/logo.png" style = "position:relative; top:40px;">
在你的CSS
img{
border-style:transparent;
}
在你style
屬性添加以下代碼,添加:
border: none;
IE增加了藍色的邊框,圖像中的鏈接。這是一件壞事。
謝謝。我已經從jai得到了答案。但感謝有關鏈接圖像的信息。 :) – MJQ
在你的CSS,添加:
img {border: 0;}
a img, a:active img, a:focus img {outline: 0;}
可以請您在此處添加代碼 – Selvamani
你能告訴你的代碼? – Afshin
您正在測試什麼版本的IE? – Spudley