0
我一些問題與z-index屬性: 這是代碼:z-index的問題與背景圖像和圖像父標籤
<div id="sidebarCont">
<div id="avatarCont" class="mask">
<img id="" class="" src="img.jpg" alt=""/>
</div>
和CSS:
#avatarCont{
overflow:hidden;
height:160px;
width:160px;
margin:0px auto;
background:url('../img/mask.png') no-repeat;
position:relative;
z-index:70;
}
#avatarCont img{
position:absolute;
top:0px;
left:0px;
z-index:50;
}
我想擁有一個圖像上的面具,有人有想法來解決這個問題?
感謝您的回答,我需要在firts div上使用另一個img背景覆蓋另一個div,第一個容器具有z-index高值。 – ghost
然後我的回答是「你不能」。 https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Understanding_z_index/The_stacking_context –