gpt4 book ai didi

html - 动态页脚

转载 作者:行者123 更新时间:2023-11-28 02:05:20 25 4
gpt4 key购买 nike

我想动态地将页脚放在底部。

  1. 页脚必须固定在底部

  2. 如果页面中有更多数据,页脚必须自动放低。

html {
position: relative;
min-height: 100%;
}

body {
padding-top: 60px;
margin-bottom: 75px;
}

footer {
position: absolute;
bottom: 0;
width: 90%;
height: 45px;
line-height: 45px;
}
<div id="container"> 
<div id="main">

</div>

<div id="footer">
<div class="container">
<span>Place sticky footer content here.</span>
</div>
</div>
</div>

最佳答案

我可能对您想要的东西有点困惑,您希望页脚自动与正文文本间隔开,而不管添加了多少?

尝试Position: relative

绝对 定位将使您的页脚脱离文档流,因此如果您有大量垂直内容,页脚将放在其上方。

这对我有用(假设我知道你想要什么):

footer {
position: relative;
bottom: 0;
width: 90%;
height: 45px;
line-height: 45px;
padding-top: 15px;
}

您可以添加:

margin: 0

如果你想要更小的间距。

关于html - 动态页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49055236/

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