所以我在网站底部有空的空间问题。这是网站:click
网站回复:https://github.com/bdevelops/feditor
我在堆栈上阅读问题,试图找到解决方案,但没有任何作用。
抱歉英语不好,如果是的话。
答案 0 :(得分:0)
在CSS类中.box是margin-top:30px或height:100%。这就是在您网站底部设置空白区域的原因
box {
background: #fff none repeat scroll 0 0;
box-sizing: border-box;
height: 100%; **//Set it to "auto"
margin-top: 30px; **//or this one, change it to 0px or remove**
overflow: hidden;
width: 100%;
}