HTML - 页脚后消除空白区域

时间:2013-12-12 04:56:59

标签: html css

我在删除页脚后的空白区域时出现问题。这是我的网站:https://www.filterbypass.me/

我尝试使用Google搜索并将padding:0;添加到页脚css但是它没有用。

提前感谢您的帮助

3 个答案:

答案 0 :(得分:1)

查看您的页脚类

页脚{

background: none repeat scroll 0 0 #1E1E1E;
color: #FFFFFF;
font-family: 'sansationregular';
height: 36px; // ?  36 height
line-height: 40px;  // Here the problem 40 line height
margin-top: 45px;
width: 100%;

}

设为行高:36px;想想简单......

答案 1 :(得分:0)

您已在第height:36px;行的<div id="footer">中定义了combine.css246。 这是问题

答案 2 :(得分:0)

在combine.css中查看页脚类

footer{
background: none repeat scroll 0 0 #1E1E1E;
color: #FFFFFF;
font-family: 'sansationregular';
height: 36px;    /*comment this if you want to keep line-height*/
line-height: 40px;
margin-top: 45px;
width: 100%;
}