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

相关文章:

  • 2022-12-23
  • 2021-07-05
  • 2021-08-01
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-03-06
  • 2022-12-23
猜你喜欢
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
相关资源
相似解决方案