答案 0 :(得分:2)
试试这个
#div-01
{
position :absolute;
top:0px;
left:0px;
height:600px;
width:800px;
background-color:gray;
}
#div-02
{
position :absolute;
top:0px;
left:200px;
height:500px;
width:400px;
background-color:yellow;
}
答案 1 :(得分:1)
我建议这个
#div-01
{
z-index:1;
height:300px;
width:800px;
background-color:gray;
}
#div-02
{
z-index:2;
height:500px;
width:400px;
background-color:yellow;
}
<div id="div-01">
<div id="div-02"></div>
</div>
答案 2 :(得分:0)