gpt4 book ai didi

css - 为什么我的页脚一直向下?

转载 作者:行者123 更新时间:2023-11-28 14:10:22 24 4
gpt4 key购买 nike

网站在这里:

http://www.cottonbrewing.com/members

如果内容不需要页面滚动就可以了。

CSS:

#footer {
position:absolute;
bottom:0;
left:0;
right:0;
margin: 0 auto;
font-size: 12px;
font-weight: normal;
clear:both;
padding: 10px 0px 10px 0px;
text-align: center;
}

编辑 1:如果内容很小,我还必须确保页脚位于绝对底部,例如您在此处看到的:http://www.cottonbrewing.com/页脚在底部。

最佳答案

position:absolute;更改为position:relative;

添加

作为对评论的回应,请遵循以下“粘性页脚”指南:

正文

body
{
height:100%;
}

你的容器div:

#container
{
min-height: 100%;
position: relative;
}

你的页脚div:

#footer
{
position: absolute;
bottom: 0;
width: 100%;
height: 30px; /* can be changed, along with padding */
}

关于css - 为什么我的页脚一直向下?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9549697/

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