【原创】解决IE8下min-height值使bottom:0px失效的方法
html, body
{
    width: 100%;
    height: 100%;
    overflow: auto;
    position: absolute;
    left: 0px;
    top: 0px;
    min-height: 620px;
    min-width: 1000px;
    _width: expression((documentElement.clientWidth < 1000) ? "1000px" : "100%" );
    _height: expression((documentElement.clientHeight < 600) ? "620px" : "100%" );
}
这句话可以彻底解决三行布局中页脚的BOTTOM:0px问题。

                
            
        
浙公网安备 33010602011771号