我正在尝试Bootstrap,我想知道,如果滚动内容,如何将页脚固定在底部而又不会从页面中消失呢?
Answers:
要获得贴在视口底部的页脚,请将其固定在这样的位置:
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
fixed-bottom
并没有达到我的期望,而是static-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">
您可能需要检查以下示例:http : //getbootstrap.com/2.3.2/examples/sticky-footer.html