Bootstrap中的固定页脚


Answers:


206

要获得贴在视口底部的页脚,请将其固定在这样的位置:

footer {
    position: fixed;
    height: 100px;
    bottom: 0;
    width: 100%;
}

Bootstrap在该类的Navbar> Placement部分中包含此CSS fixed-bottom。只需将此类添加到页脚元素中即可:

<footer class="fixed-bottom">

引导文档:https : //getbootstrap.com/docs/4.4/utilities/position/#fixed-bottom


这和@ Daniel-Tero的评论对我来说是成功的。
jmng

4
如果页面滚动,则无法正常工作。
阿纳布

2
fixed-bottom并没有达到我的期望,而是static-bottom尊重页面内容的高度。
Gjaa




0

您可以通过将页面内容包装在div中并应用以下id样式来实现:

<style>
#wrap {
   min-height: 100%;
   height: auto !important;
   height: 100%;
   margin: 0 auto -60px;
}
</style>

<div id="wrap">
    <!-- Your page content here... -->
</div>

为我工作。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.