gpt4 book ai didi

html - 如何获得粘性页脚?

转载 作者:太空宇宙 更新时间:2023-11-03 18:48:40 25 4
gpt4 key购买 nike

我知道有很多关于粘性页脚的问题,但我似乎无法让它们在我的页面上工作。

谁能帮我把页脚设为粘性而不是固定的?

我的 HTML

<div id="container">
<div id="header"></div>
<div id="content"></div>
<div id="footer"></div>
</div>

我的 CSS

#container {
width: 980px;
min-height: 100%;
margin-left: auto;
margin-right: auto; }

#content {
width: 100%;
min-height: 100%;
margin: 40px 0; }

#footer {
width: 3000px;
min-height: 185px;
background-color: rgb(0,173,239);
margin-left: -1000px; }

我已经尝试过各种位置(相对的、固定的等),但都不起作用。我似乎修复了页脚并覆盖了内容。有什么建议吗?

最佳答案

试试这个 CSS:

body {
min-height: 100%; }

#container {
width: 980px;
min-height: 100%;
margin-left: auto;
margin-right: auto; }

#content {
width: 100%;
min-height: 100%;
margin: 40px 0;
margin-bottom: 290px; }

#footer {
width: 100%;
min-height: 185px;
background-color: rgb(0,173,239);
position: fixed;
bottom: 0;
left: 0;
right: 0; }

关于html - 如何获得粘性页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15603625/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com