这是我的代码:
<div id="first">
<div id="first-internal"> </div>
</div>
<div id="fixed"> </div>
#first
{
position:relative;
}
#first-internal
{
position:relative;
z-index:100;
background-color:blue;
width:400px;
height:400px;
}
#fixed
{
position:absolute;
top:0;
left:0;
width:200px;
height:200px;
background-color:red;
z-index:41;
}
为什么我看不到#fixed
?它在 之后#first
,所以它必须有更多的“z-index 点”然后#first
。必须显示#fixed
(即使是#first
have的子级)的内容。z-index:9000