2012-03-16 182 views
0

我有我的旁邊放置了背景圖片如下背景圖像不會出現IE

<div class="rightLinks homeLocalChange"> 
    <a href="#" onclick="s_objectID=&quot;http://mypreviewdev.okla.seagate.com/portal/site/myseagate/menuitem.a7093785094fba806b42d710f014a_21&quot;;return this.s_oc?this.s_oc(e):true">ChangeLocation</a> 
</div> 

.threeCols .box .rightLinks a 
{ 
    background:url('../images/icn/icn_arrow_configure.png')no-repeat 95px 9px; 
} 

但不知何故像正好出現在完美FF/Chrome,但在IE瀏覽器,它只是沒有按」這個位置鏈接t顯示出來。

即使在開發者內部,它甚至不會顯示我給出的CSS。

我使用IE8

+0

請更新你的答案,你失去了一些東西......像鏈接和你的代碼沒有顯示出來。 – w3uiguru 2012-03-16 07:32:39

+0

沒有位置鏈接 – Jack 2012-03-16 07:36:12

+1

而你似乎缺少'url'和''..images'之間的左括號 – 2012-03-16 07:47:16

回答

0

先給寬度和高度之前)

.threeCols .box .rightLinks a 
{ 
    background:url('../images/icn/icn_arrow_configure.png')no-repeat 95px 9px; 
    width:500px; 
    height:500px; 

} 
1

嘗試添加空間no-repeat

.threeCols .box .rightLinks a { 
    background:url('../images/icn/icn_arrow_configure.png') no-repeat 95px 9px; 
} 
+0

在我的情況下,這解決了這個問題。 – 2013-02-11 11:57:50