这里是示例html:
<div id = "mainWrapperDiv">
<div id = "mainDiv">
<div> testing </div>
</div>
</div>
<div id = "footerDiv">
</div>
它的css:
*
{
padding: 0px;
margin: 0px;
}
body, html
{
height: 100%
}
div
{
border: none;
}
#mainWrapperDiv
{
min-height: 100%;
height: 100%;
margin-bottom: -200px;
}
#mainDiv
{
margin: 0px auto 0px auto;
width: 1000px;
min-height: 500px;
background: lightgreen;
}
#footerDiv
{
height: 200px;
width: 100%;
position: relative;
clear: both;
background: lightblue;
}
答案 0 :(得分:1)
你使用了什么粘性页脚?你的代码是什么样的?你可以试试
答案 1 :(得分:0)
因为位置设置为相对。以及margin-bottom: -200px;
答案 2 :(得分:0)
这是因为margin-bottom
中的#mainWrapperDiv
。如果你把它拿出来似乎工作正常。查看http://jsfiddle.net/kA6XJ/