gpt4 book ai didi

css - 如何使用粘性页脚将 bootstrap 3 容器设置为浏览器高度的 100%?

转载 作者:行者123 更新时间:2023-11-28 10:15:45 25 4
gpt4 key购买 nike

如标题所述,如何使用粘性页脚将 bootstrap 3 容器(包装器)设置为浏览器窗口高度的 100%?

BootPly

更新:

粘性页脚工作正常,它是第一个 '<div class="container">'我需要 100% 的高度

最佳答案

您可以将页面高度设置为 100%,然后将页脚放在底部并为其高度留出边距。

像这里做的一样:http://getbootstrap.com/examples/sticky-footer-navbar/

首先将其添加到您的 CSS 中:

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

对于页脚添加这个

.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
background-color: #f5f5f5;
}

关于css - 如何使用粘性页脚将 bootstrap 3 容器设置为浏览器高度的 100%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27748003/

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