将页脚DIV展开到窗口底部

时间:2012-03-06 13:36:30

标签: css xhtml

是否可以将页脚DIV向下扩展到窗口底部?

我做了以下事情:

html, body {
    height: 100%;
}
#footer {
    position: absolute;
    bottom: 0;
    float:left;
    width: 100%;
    min-height: 35px;
    background-color: #004467;
}

但这不符合我的要求。我需要页脚填充可用空间直到底部(在前一个DIV之前没有间隙)。有人可以建议吗?

2 个答案:

答案 0 :(得分:2)

据我所知,你需要Sticky footer技术。请检查此http://ryanfait.com/sticky-footer/

答案 1 :(得分:0)