是否可以将页脚DIV向下扩展到窗口底部?
我做了以下事情:
html, body {
height: 100%;
}
#footer {
position: absolute;
bottom: 0;
float:left;
width: 100%;
min-height: 35px;
background-color: #004467;
}
但这不符合我的要求。我需要页脚填充可用空间直到底部(在前一个DIV之前没有间隙)。有人可以建议吗?