Twitter Bootstrap 3 Sticky Footer我一直在使用twitter bootstrap框架已经有一段时间了,他们最近更新到版本3!我无法将粘性页脚粘到底部,我使用了twitter bootstrap网站提供的入门模板,但仍然没有运气,有什么想法吗?
3 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
简单的js
if ($(document).height() <= $(window).height()) { $("footer").addClass("navbar-fixed-bottom");}
更新#1
$(window).on('resize', function() { $('footer').toggleClass("navbar-fixed-bottom", $(document).height() <= $(window).height());});
- 3 回答
- 0 关注
- 509 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消