获取内容 div 到达页面底部
在 http://audioaffair.co.uk 上,为什么内容 div #pageSurround 没有到达浏览器窗口的底部什么时候内容足够了? (即使所有边距都是 0px,黑色背景也会在底部显示出来。那么为什么正文会提前结束呢?)
在内容较少的页面上,例如 (https://www.audioaffair.co.uk/cart.php?act=大车) 我怎样才能让 #pageSurround div 到达浏览器窗口的底部。
On http://audioaffair.co.uk why does the content div #pageSurround not hit the bottom of the browser window when there is sufficient content? (the black background shows through at the bottom even though all margins are 0px. So why does the body end early?)
On pages with less content like (https://www.audioaffair.co.uk/cart.php?act=cart)
how can I get the #pageSurround div to hit the bottom of the browser window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于你的第一个问题:那是因为在CSS中有
所以你的
pageSurround
div(带有clearfix
类)和页面底部之间有一个点。至于你的第二个问题: trevor 的链接发布应该对你有帮助。
As to your first problem: that is because in CSS there is
So there's a dot between your
pageSurround
div (withclearfix
class) and the bottom of the page.As to your second problem: the link that trevor posted should help you.