HTML标记下的额外空格

时间:2016-05-26 06:10:02

标签: html css

这是我正在开发的网站:in-nabavi.com。它没有任何东西,只有几个街区。如您所见,文档末尾有一个额外的空格,我真的不知道为什么它在那里。

这是萤火虫的结果

enter image description here

如您所见,围绕它的红线区域不包含在HTML区域中。

我也试过以下

body, html{
    margin:0;
    height: 100%;
}

但它不再起作用了。

感谢。

4 个答案:

答案 0 :(得分:4)

您已在clearfix类中使用content: "."来设置布局。 仅使用content: "";

.clearfix:after {
   visibility: hidden;
   display: block;
   content: "";
   clear: both;
   height: 0;
}

答案 1 :(得分:1)

有一个<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> css类,其中有一个.clearfix:after 删除它。

或覆盖它,以免妨碍其他任何事情。

答案 2 :(得分:1)

.clearfix:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    content: close-quote;
}

答案 3 :(得分:0)

你可以尝试这个......

.panels-flexible-1 .panels-flexible-row-last{position: absolute;}