gpt4 book ai didi

html - Bootstrap 粘性页脚解决方案有效,除非 div 开始堆叠

转载 作者:行者123 更新时间:2023-11-28 05:41:13 24 4
gpt4 key购买 nike

使用此处的模板思想:

https://gist.github.com/seyDoggy/e919a429b2459aedf509

<div class="container">
...
</div>

<footer class="footer">
<div class="container">
...
</div>
</footer>

这很好用,除非 div 正在堆叠(响应式)。然后,页脚不再可见。有谁知道一个简单的解决方法吗?

最佳答案

将粘性页脚 css 更改为此

/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}

HTML:

<footer class="footer">
<div class="container">
<p class="text-muted">Place sticky footer content here.</p>
</div>
</footer>

以上代码基于bootstrap

关于html - Bootstrap 粘性页脚解决方案有效,除非 div 开始堆叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37872801/

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