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问题。

相关文章: