3
我有一個div在另一個之上。頂部div有margin-bottom: 10px
,底部div有margin-top: 10px
,但兩個div之間只有10px的空間。div在另一個div的頂部有保證金頂部,只有1個保證金
活生生的例子:http://jsbin.com/efugok/1/edit
帶CSS的HTML:
<div style="margin-bottom:10px; background: #e6e6e6;" id="one">one</div>
<div style="margin-top:10px; background: #ccc" id="two">two</div>
渲染:
這是邊緣崩潰:http://www.w3.org/TR/CSS2/box.html#collapsing-margins – tuff