8

调整窗口大小时,页脚的高度会扩大,但背景颜色不会扩大。帮助!

http://twitter.github.io/bootstrap/examples/sticky-footer.html 粘性页脚引导程序

4

2 回答 2

7

height: auto似乎可以解决问题。您可以将它包含在小视口的媒体查询中:

@media only screen and (max-device-width: 480px) {
    #footer {
        height: auto;
    }
}
于 2013-06-05T08:47:17.920 回答
3

您的演示不再起作用,但我发现的最好的 Bootstrap 粘性页脚是:https ://gist.github.com/aalaap/3066704

于 2013-07-28T07:11:31.833 回答