如果一个 div 中包含两个 div:
<div style="border:1px;">
<div style="float:left;background-color:red;width:20px;height:20px;">
<div style="float:left;background-color:red;width:20px;height:20px;">
</div>
两个内部 div 呈现为“不可见”,因为在容器中 div 不会拉伸以允许它们填充,就好像它们不存在一样。这会产生难看的重叠/空白等。
你如何解决这个问题?