有一个 div 具有内部内容,一个 div 具有在 div 内部的边框。不知何故,这个 div 被扩展为包含下一个 div。这让我大吃一惊。
<div style="background: yellow;">
  <div>
    <div style="border: 1px solid black; background: green">green background</div>
  </div>
</div>
<div style="margin-top: 100px;">
  IE gives me a yellow background, unless i take away the border of the green 
  background div.
</div>
我想知道这是什么原因以及如何解决它。