在保留缩小的边距的同时如何结算?

时间:2019-09-16 14:00:10

标签: html css

我有类似的东西:

<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

这有可能吗?

0 个答案:

没有答案