调整窗口大小时,页脚的高度会扩展,但背景颜色不会扩大。救命啊!
http://twitter.github.io/bootstrap/examples/sticky-footer.html
答案 0 :(得分:7)
height: auto
似乎解决了这个问题。您可以将其包含在小视口的媒体查询中:
@media only screen and (max-device-width: 480px) {
#footer {
height: auto;
}
}
答案 1 :(得分:3)
你的演示不再起作用,但我找到的最好的Bootstrap粘性页脚是:https://gist.github.com/aalaap/3066704