如何将粘性页脚装入其容器内部背景颜色

时间:2015-11-21 12:41:03

标签: jquery html css twitter-bootstrap

在Bootstrap示例http://getbootstrap.com/examples/sticky-footer-navbar

将Styesheet添加为

.container
{
    background:yellow;
}

我会得到这个

enter image description here

但我需要这个

enter image description here

我应该做什么作为底部背景贴在底部但是在容器背景颜色?

2 个答案:

答案 0 :(得分:0)

您可以将容器高度设置为100%或100vh(视口高度),将其box-sizing属性设置为border-box

答案 1 :(得分:0)

您可以将此代码用于您的问题

.container
{
    min-height: 100vh; // window_height
}