当您将鼠标悬停在产品图片上时,我有这张图片想要显示在我的产品图片之上。
这就是我正在使用的:
.centerBoxContentsFeatured img:hover {
background-image:url('http://i47.tinypic.com/vz2oj.gif');
}
它确实有效,但它显示在产品图像的后面而不是在它的顶部。我尝试了绝对定位和 z-index,但似乎没有任何效果。
http://www.pazzle.co.uk - 尝试在主页上的图像上应用。<<
编辑:
#featuredProducts.centerBoxWrapper {
position: relative;
}
#featuredProducts.centerBoxWrapper:hover:before {
content: '';
width: 187px;
height: 179px;;
position: absolute;
top: 0;
left: 0;
background-image:url('http://i47.tinypic.com/vz2oj.gif');
}