これは私のコードです:
<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
です。( have#fixed
の子の場合も)のコンテンツを表示する必要があります。#first
z-index:9000