获取内容 div 到达页面底部

发布于 2024-10-29 13:07:19 字数 286 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲸落 2024-11-05 13:07:19

至于你的第一个问题:那是因为在CSS中有

.clearfix:after {
content: ".";
    /* ... */
}

所以你的pageSurround div(带有clearfix类)和页面底部之间有一个点。

至于你的第二个问题: trevor 的链接发布应该对你有帮助。

As to your first problem: that is because in CSS there is

.clearfix:after {
content: ".";
    /* ... */
}

So there's a dot between your pageSurround div (with clearfix class) and the bottom of the page.

As to your second problem: the link that trevor posted should help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文