关于底部的页脚有很多问题,但我无法找到解决这个问题的方法。
我有这种情况:
footer at bottom http://www.cucuza.com/gustavo/footer2.jpg
我希望Content div能够扩展以满足页脚的上边缘。
页脚必须具有粘性页脚行为:当页面高度小于视口时,页脚必须位于视口的底部,当页面高度大于视口时,页脚必须保留在页面底部。
答案 0 :(得分:1)
在我写这个问题时,我想出了解决方案:
这是live demo。
footer at bottom http://www.cucuza.com/gustavo/footer3.jpg
这是代码:
HTML:
<div id="wrapper">
<div id="header">Header</div>
<div id="content">Content</div>
<div id="footer">Footer</div>
</div>
CSS:
html,
body {
margin:0;
padding:0;
height:100%;
background:#ccc;
}
#wrapper {
min-height:100%;
position:relative;
width: 500px;
margin: 0 auto;
background:#fff;
}
#header {
background:#5ee;
}
#content {
padding-bottom:80px;
min-height:100%;
}
#footer {
width:100%;
height:80px;
position:absolute;
bottom:0;
left:0;
background:#ee5;
}
工作原理: