开发者

ie 6 footer floating to the top issue

The client website I am developing looks fine in FF, Safari, IE7, IE8. But IE6 floats the footer to the top of the page!!!!??

The site is here: http://pssnet.com/~devone/myles/index.php The style sheet: http://pssnet.com/~devone/myles/css/style.css

The wrapper, and footer css are below. Footer is inside the wrapper div. Thank you for the feedback.

.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;
}


IE6 doesn't like the min-height in your wrapper. Try adding this under the min-height:

height:auto !important;
height:730px;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜