根据以下html和css代码,son盒子所属的包含块是() .grandf...
根据以下html和css代码,son盒子所属的包含块是()
.grandfather {
position:relative
top:50px
left:50px
width:200px
height:200px
background-color: pink
}
.father {
position:relative
width:100px
height:100px
background-color: red
}
.son {
position:fixed
width:50px
height: 50px
left:10px
top:10px
background-color: green
}
<div class="grandfather">
<div class="father">
<div class="son"></div>
</div>
</div>