我的页脚上方和下方都有空白区域,有空隙请检查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%;
}
答案 0 :(得分:1)
我在你的网站上看到了8px的身体边缘。添加或删除现有。
body{
margin:0;
padding:0;
}
错误强>
答案 1 :(得分:0)
页面正文有8px的边距。
我在我的style.txt中看到你添加了
!important .body
{ margin:0 !important;
padding:0 !important;
}
这需要:
body
{
margin:0 !important;
padding:0 !important;
}