-1

这是示例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;
}
4

3 回答 3

1

你用的是什么粘性页脚?你的代码是什么样的?你可以试试

http://www.cssstickyfooter.com/

于 2011-01-23T17:34:17.337 回答
0

因为位置设置为相对。还有margin-bottom: -200px;

于 2011-01-21T21:57:12.320 回答
0

这是因为你margin-bottom#mainWrapperDiv. 如果你把它拿出来,它似乎工作正常。看看http://jsfiddle.net/kA6XJ/

于 2011-01-21T22:46:13.903 回答