我目前正在尝试使用 z-index 以特定顺序定位一些 DIV,但它们似乎并没有让我在 jsfiddle 中设置它,以便您查看是否可以看到任何问题。
这是我希望它从后到前的顺序:
红色 绿色 蓝色 黄色
HTML
<div id="green">
<div id="yellow">
</div>
<div id="red">
</div>
</div>
<div id="blue">
</div>
CSS
#green{
background-color:green;
height:100px;
width:100%;
position:fixed;
top:0;
}
#red {
margin:-85px auto 0;
width:406px;
height:60px;
background-color:red;
z-index:-99999;
}
#blue{
margin:350px auto 0;
width:60px;
height:465px;
z-index:99999;
background-color:blue;
}
#yellow {
margin:0px auto 0;
width:170px;
height:170px;
background-color:yellow;
z-index:99999;
}