我为ie7使用了一个特定的css,它在ie7中出现了问题,右边的空白约占50px;这就是为什么在页面上显示水平滚动条的原因,
我想删除滚动条和空白。

我在ie7的CSS中使用的代码

#pagewrap   /* This pagewrap is use for signup page to fixed align center */
{
    margin  : 0px auto;
    width   : 1000px;
    min-height  : 710px;
}


谢谢

最佳答案

#pagewrap   /* This pagewrap is use for signup page to fixed align center */
{
    margin  : 0px auto;
    width   : 900px;
    min-height  : 710px;
}


如果对象的宽度太宽,请尝试缩小它的宽度。您还可以将百分比更改为:

#pagewrap   /* This pagewrap is use for signup page to fixed align center */
{
    margin  : 0px auto;
    width   : 100%;
    min-height  : 710px;
}

08-15 16:27