粘性页脚。 HTML

时间:2013-04-24 07:05:50

标签: html css footer

我有这个非常简单的页脚:

.footer{
    width:100%;
    background-color:#333;
    height:100px;
    position: absolute;  
    bottom: 0px; 
}

和这个容器:

.container{
    position:relative;
    height:100%;
    width:980px;
    margin:0px auto;
}

容器的(内容)高度为100%,因此它取决于您从搜索查询中获得的结果数量。我希望页脚始终贴在容器底部。当你没有结果时,我只想把它放在屏幕的底部。

我试图给容器一个填充底部容器的高度并改变位置,但它没有帮助。有没有人知道如何解决这个问题?

2 个答案:

答案 0 :(得分:3)

试试这个:

.footer{ width:100%; background-color:#333; height:100px; position: fixed;
bottom: 0px; }

用固定的

更改绝对位置

<强> DEMO

答案 1 :(得分:0)