我正在尝试Bootstrap,我想知道,如果滚动内容,我如何修复底部的页脚而不让它从页面上消失?
7 回答
要获得一个粘在视口底部的页脚,请给它一个固定的位置,如下所示:
footer {
position: fixed;
height: 100px;
bottom: 0;
width: 100%;
}
Bootstrap 将这个 CSS 包含在 Navbar > Placement 部分的 classfixed-bottom
中。只需将此类添加到您的页脚元素:
<footer class="fixed-bottom">
引导文档:https ://getbootstrap.com/docs/4.4/utilities/position/#fixed-bottom
添加这个:
<div class="footer navbar-fixed-bottom">
https://stackoverflow.com/a/21604189
编辑:类navbar-fixed-bottom
已更改fixed-bottom
为自 Bootstrap v4-alpha.6 起。
http://v4-alpha.getbootstrap.com/components/navbar/#placement
添加固定底部:
<div class="footer fixed-bottom">
添加z-index:-9999;
到此方法,否则它将覆盖您的顶部栏,如果您有1
.
另一个解决方案:
您可以使用“最小高度:80vh;”。
这允许您使用视口高度设置最小高度。
引导程序示例:
<style>
main {
min-height: 80vh;
height: auto !important;
height: 100%;
margin: 0 auto -60px;
}
</style>
<main class="container">
<!-- Your page content here... -->
</main>
<footer class="footer navbar-fixed-bottom">
<!-- Your page footer here... -->
</footer>
兼容性: |
---|
Chrome 31+ / FireFox 31+ / Safari 7+ / Internet Expl. 9+ / 歌剧 29+ |
您可以通过应用以下 id 样式将页面内容包装在 div 中来做到这一点:
<style>
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -60px;
}
</style>
<div id="wrap">
<!-- Your page content here... -->
</div>
为我工作。
您可能想检查该示例: http: //getbootstrap.com/2.3.2/examples/sticky-footer.html