页脚下方的白色空间以及重新调整大小的窗口

时间:2014-02-10 06:36:21

标签: html css responsive-design removing-whitespace

我的页脚上方和下方都有空白区域,有空隙请检查css位于下方

.footer {
background-image: url("../images/footer_image.png");
background-repeat: no-repeat;
background-size: 100% auto;
float: left;
height: auto;
width: 100%;
        }

.footer_bg {
background-image: url("../images/footer_bg.png");
background-repeat: no-repeat;
background-size: 101% auto;
height: 232px;
margin-top: 12.1%;
width: 100%;
}

2 个答案:

答案 0 :(得分:1)

我在你的网站上看到了8px的身体边缘。添加或删除现有。

body{
margin:0;
padding:0;
}

Your body margin

错误 enter image description here

答案 1 :(得分:0)

页面正文有8px的边距。

我在我的style.txt中看到你添加了

!important .body
{ margin:0 !important; 
 padding:0 !important; 
}

这需要:

body
{ 
margin:0 !important; 
padding:0 !important; 
}