10 09/2014

remove ie horizontal scrollbar

最后更新: Wed Sep 10 2014 12:36:06 GMT+0800

ie6 只要出现竖向滚动条,就会同时出现横向滚动条。

办法1

html {
    overflow-y: scroll;
}

缺点:永远有竖向滚动条,即使不需要的时候。

办法2

html {
    overflow-x: hidden;
    overflow-y: auto;
}
  • 好处:竖向根据需要出滚动条
  • 缺点:如果横向宽的话,会被隐藏

办法3

body {
    margin-right: -15px;
    margin-bottom: -15px;
}