容器 DIV 未延伸超出窗口的原始高度
我将以下 CSS 用于容器 DIV,高度为 html,正文设置为 100%,但它没有延伸到 此页面,即当向上滚动以显示页面下方的内容时,容器 DIV 未显示:
#container {
padding: 0;
margin: 0;
background-color: #292929;
width: 1200px;
margin: 0 auto;
min-height: 100%;
}
有人可以告诉我为什么这不起作用。
I am using the following CSS for a container DIV with height of html and body set to 100%, and yet it is not stretching beyond the edge of the window on this page, i.e. when scrolling up to reveal content lower down the page, the container DIV is not showing:
#container {
padding: 0;
margin: 0;
background-color: #292929;
width: 1200px;
margin: 0 auto;
min-height: 100%;
}
Could someone please let me know why this isn't working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
overflow:hidden
添加到:这将导致
#container
流过其中浮动元素的底部,从而为其计算出高度。另一种选择是执行.clearfix
。Add
overflow: hidden
to:That will cause
#container
to flow past the bottom of the floated elements within it that should give it it's calculated height. Another option is to do a.clearfix
.您应该使用高度,而不是宽度:
而不是:
You should use Height, instead of width:
Instead of: