放大时,为什么页脚与其前面的内容重叠

时间:2011-01-21 21:52:55

标签: css xhtml zoom sticky-footer

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

3 个答案:

答案 0 :(得分:1)

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

http://www.cssstickyfooter.com/

答案 1 :(得分:0)

因为位置设置为相对。以及margin-bottom: -200px;

答案 2 :(得分:0)

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