即6英尺浮动到顶部问题

时间:2009-10-06 13:54:04

标签: css cross-browser

我正在开发的客户端网站在FF,Safari,IE7,IE8中看起来很好。但IE6将页脚浮动到页面顶部!!!! ??

网站在这里: http://pssnet.com/~devone/myles/index.php 样式表:http://pssnet.com/~devone/myles/css/style.css

包装器和页脚css位于下方。页脚在包装div内。感谢您的反馈。

.wrapper {
    position: relative;
    min-height: 730px;
    height: auto !important;
    width: 770px;   
    margin-left: 14%;
    margin-right: 10%;
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;  
    color: #336666;
    border-style: solid;
    border-width: 0px;      
}

#footer {
    clear: both;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;          
    background: #CEF6CE;
}

1 个答案:

答案 0 :(得分:1)

IE6不喜欢你的包装器中的最小高度。尝试在min-height下添加:

height:auto !important;
height:730px;