2010-12-06 105 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