2012-10-17 51 views
0

在我的網站中,徽標在firefox和chrome中顯示正常,但在I.E中顯示藍色邊框。 enter image description hereIE中的圖像邊框錯誤

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

可以請您在此處添加代碼 – Selvamani

+0

你能告訴你的代碼? – Afshin

+0

您正在測試什麼版本的IE? – Spudley

回答

1

add「border-style:none;」到圖像

+0

謝謝。有效。 – MJQ

1

在你的CSS

img{ 
border-style:transparent; 
} 
1

在你style屬性添加以下代碼,添加:

border: none; 

IE增加了藍色的邊框,圖像中的鏈接。這是一件壞事。

+1

謝謝。我已經從jai得到了答案。但感謝有關鏈接圖像的信息。 :) – MJQ

0

在你的CSS,添加:

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