使容器 DIV 覆盖包含 DIV 高度的 100%
我正在开发一个新网站和 我的一个页面 我只是无法让我的 #main div(我的页面内容包含 DIV)拉伸到足够长以覆盖内部 DIV。
请检查一下并指出我的 CSS 中需要修复的部分。非常感谢大家。
I'm working on a new website and on one my pages I just cant get my #main div which is my page content's containing DIV to stretch long enough to cover the inner DIV's.
Please check it out and point out the parts of my CSS that need fixing. Many thanks to all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@自行车;正好
问题出在您的
#main div
中有floated
元素,因此您必须先清除它。在上面的例子中我写了
overflow:hidden
&删除高度:100%
@bikey; just right
The problem is in your
#main div
there arefloated
element's so you have to clear it first.in the example above i write
overflow:hidden
& removeheight:100%
只需从layout.css中的
#main{...}
(第31行左右)删除height: 100%
并添加
之后
Just remove
height: 100%
from layout.css at#main{...}
(line 31 or so)and add
<br style="clear:both;" />
after<div id="content">...</div>