2012-09-03 49 views
0

我補充說,就像一個立子彈的圖像:更換李子彈與底色的圖像,IE 8和7

.top_right li { 
float: left; 
width: 7em; 
line-height: 100%; 
background: url(images/thumbs.png) no-repeat top 4px left; 
border-bottom: solid 1px #222; 
margin-right: 1em; 
padding: 5px 0 5px 1.3em 
} 

任何想法,爲什麼thumbs.png不能在IE 8和7說明了什麼?

+0

請在[jsFiddle](http://jsfiddle.net)上進行演示,或者提供一個鏈接到您的網站,如果它是活的。 – Chris

回答

0

這裏有一個工作demo。我必須刪除bakcground屬性中的top 4px left以顯示圖像。

你必須指定top leftXpx Ypx,不能混合起來:)。

+0

非常感謝。 :)任何想法爲什麼沒有工作? – webmasters

+0

您只能指定兩個背景屬性。一個用於X軸和Y軸。您可以使用top/center/left/right指定這些屬性,或者使用像素或任何其他css單位的值。 X軸(水平)屬性首先出現。 –