ie6中不必要的垂直滚动条

时间:2010-03-16 14:53:44

标签: css internet-explorer-6

任何人都可以帮我删除ie6中不必要的滚动条。

这是我的网址:

http://webberzsoft.com/clients/csslayouttest/template_new.php

3 个答案:

答案 0 :(得分:0)

overflow-y: hidden

答案 1 :(得分:0)

添加到您的CSS:

body{
  overflow:auto;
}

或内联,如果您愿意:

<body style='overflow:auto;'>

答案 2 :(得分:0)

你想要:

#wrapper{
    min-height:99%;
    width: 1240px;
    margin:0 auto;
    background: #FFFFFF;
    border-left:1px solid #000;
    border-right:1px solid #000;
    overflow-y: hidden; /*HERE*/
}

也在那里......

相关问题