额外的空间ie7

时间:2010-06-23 13:10:31

标签: html css

我使用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; 
}

由于

2 个答案:

答案 0 :(得分:0)

#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; 
}

答案 1 :(得分:0)

尝试

body{
    margin:0px;
    padding:0px;
}