如何让页脚粘在网页文本的末尾?

发布于 2024-11-14 11:58:33 字数 194 浏览 1 评论 0原文

我在这个网站上遇到了一个大问题。-> http://www.webbon.ca/demo/dev/home/

问题很简单。我只需要让页脚粘在文本的末尾即可。您可以使用检查元素或萤火虫来告诉我您做了哪些修改才能使其正常工作。

I got a huge problem on this website.-> http://www.webbon.ca/demo/dev/home/

The problem is simple. I just need to get the footer to stick to the end of the text. You can use inspect element or firebug to tell me which modification you made to get it to work fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

稀香 2024-11-21 11:58:33

以下是获取粘在页面底部的页脚的简单方法:

CSS:

* {
margin:0;
padding:0;
}
html, body {height: 100%;}
#wrap {min-height: 100%;}
#main {
overflow:auto;
padding-bottom: 150px;
}  
#footer {
position: relative;
margin-top: -150px;
height: 150px;
background-color: #CCCCCC;
clear:both;
}

HTML:

<div id="wrap">

<div id="main">
<h1>Content!</h1>
</div>

</div>

<div id="footer">
<p>I'm the footer.</p>
</div>

您可以在 http://www.cssstickyfooter.com/using-sticky-footer-code.html

Here is a simple way to get a footer which sticks to the bottom of the page:

CSS:

* {
margin:0;
padding:0;
}
html, body {height: 100%;}
#wrap {min-height: 100%;}
#main {
overflow:auto;
padding-bottom: 150px;
}  
#footer {
position: relative;
margin-top: -150px;
height: 150px;
background-color: #CCCCCC;
clear:both;
}

HTML:

<div id="wrap">

<div id="main">
<h1>Content!</h1>
</div>

</div>

<div id="footer">
<p>I'm the footer.</p>
</div>

You can see more, and get specific fixes, at http://www.cssstickyfooter.com/using-sticky-footer-code.html.

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