在下面的示例中,为什么移除 #enclosure div 上的边框会使背景浅蓝色不再填充整个 div 背景?
#enclosing
{
background: lightblue;
margin: 0;
border: 1px solid blue;
}
#outer
{
margin: 40px;
}
#inner
{
margin: 20px;
border: 1px solid black;
}
<div id="enclosing">
<div id="outer">
<div id="inner">This is nested div</div>
</div>
</div>
JSFiddle上的示例