我试图在具有动态高度(增长量)一个div的底部得到粘页脚。 DIV的需要漂浮在页面的中间(相同的距离左,右)。
我有以下的HTML(剥离不相关的东西):
<html>
<body>
<div class="bodybackground">
<div class="container"><!-- floats in the middle -->
<div class="mainContainer"><!-- different color etc -->
<!-- content with dynamic height -->
</div>
<footer class="pagefooter"></footer>
</div>
</div>
</body>
</html>
下面CSS(也少了一份无关的东西):
html {
height: 100%;
margin: 0px;
padding: 0px;
}
body {
margin: 0px;
height: 100%;
}
.bodybackground {
height: 100%;
min-height: 100%;
}
.container {
min-height: 100%;
display: inline-block; /* needed make it float in the middle of body */
top: 0px;
position: relative;
padding: 0px;
padding-bottom: 158px; /* height of footer */
}
.mainContainer {
position: absolute;
height: 100%;
overflow: auto;
}
.pagefooter {
position: absolute;
bottom: 0px;
margin: 0px;
padding: 0px;
height: 158px;
}
然而mainContainer上的内容浮出并继续页脚后面 - 而不是页脚是在最底层。 我已经试过几乎所有我能找到,只是迫使我改变容器的显示属性的例子,因为我需要的是保持它浮在中间。
在那里我是一个傻瓜任何线索? 谢谢!!
我需要拨弄了一下多与.push,但问题解决了! 感谢您及时回复!