我有类似的东西:
<div style="margin-bottom: 10px">
<div style="overflow: auto">
<div style="float: left">
<div style="margin-bottom: 10px">
foo
</div>
</div>
</div>
</div>
如果我删除了overflow: auto
,则对齐会变得混乱,因为这需要clearfix。如果我不删除它,则边距不会崩溃。换句话说,我希望margin-bottom
的总数为10px
,而不是20px
。
这有可能吗?