2010-12-06 103 views

回答

2

IE7似乎沒有正確提取邊距。

嘗試在您的productItem類中設置position: relative;聲明。然後,而不是你的.listing span.badge類設置邊距值,嘗試設置以下值:

top: 0; 
left: 0; 

您還需要做的購物車圖標(你img.cart類)。再次,你要這個圖像絕對定位在每個列表項的右下角:

.listing ul li.productItem img.cart, .listing ul li.productItemLast img.cart { 
    bottom: 5px; 
    cursor: pointer; 
    position: absolute; 
    right: 5px; 
} 

您可能需要調整的底部和右側位置的位。 這應該照顧它。

+0

在productItem類別上設置相對位置會導致所有購物車圖像出現在相同y位置的頁面底部。 – objects 2010-12-06 03:57:42