执行以下代码,最终son盒子的width值是()px .father { ...
执行以下代码,最终son盒子的width值是()px
.father {
width: 200px
height: 200px
background-color: pink
}
.son {
margin:0 -5px
padding:0 10px
height:100px
background-color: red
}
<div class="father">
<div class="son"></div>
</div>