gpt4 book ai didi

css - Bootstrap 3 : Sticky footer not so sticky

转载 作者:太空宇宙 更新时间:2023-11-04 12:41:52 26 4
gpt4 key购买 nike

这是我的 jsFiddle带有完整的代码示例。

我正在尝试实现 sticky footer .如您所见,我的登录表单非常简短。尽管如此,页脚应该一直固定到页面底部。我试过:

.footer {
position: relative;
width: 700px;
margin: 0 auto;
background: url(images/footer.jpg) no-repeat;
}

但这行不通。知道我可以添加什么确切的 JS/CSS 来修复我的粘性吗?

最佳答案

CSS

/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
}

JS

(function ($) {

var height = $('footer').height();
//update the value when page is loaded
$(document).ready(function () {
$('body').css({"margin-bottom" : height });

});

//update the value when the browser is resized (useful for devices which switch from portrait to landscape)
$(window).resize(function () {
$('body').css({"margin-bottom" : height });
});

})(jQuery);

HTML

<body>
<header>
.....
</header>
<div class="content">
......
</div>
<footer>
......
</footer>
</body>

关于css - Bootstrap 3 : Sticky footer not so sticky,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26796983/

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