我一直在阅读有关具有该float
属性的元素如何不考虑其高度的信息。因此,我应该clear:both
在父 div 结束之前使用它,这样它就会覆盖整个内部 div。
您可以在此页面上看到带有 id 的 divfull-height-template-container
没有超出其内部内容,因此页脚(右下角的版权文本)在页面上的位置过高。
布局如下所示:
<div id="full-height-template-containter">
<div id="content-container">
<div id="full-width" style="float:left;">
</div>
<div style="clear:both;"></div>
</div>
<div style="clear:both;"></div>
</div>
为了使外部 div 覆盖其子级,我还能尝试什么?
提前致谢!