我想设置背景图像,使其出现在前景图像的前面。
我尝试了以下代码,但它没有按预期工作:
.background-image
{
border :0px;
background-image: url(/images/icon.png);
z-index:1000;
}
.foreground-image
{
width:200px;
height:113px;
border :0px;
z-index:1;
}
<div>
<a href="#" class="background-image">
<img class="foreground-image" src="./images/pic1.jpg" />
</a>
</div>
我正在使用 CSS2。