页面末尾生成不需要的空白区域

时间:2014-11-09 05:29:52

标签: html css css-transitions

我的网站上有一个问题。每当我单击文本框时,页面末尾都会生成不需要的空白区域。请帮忙。链接:http://connectorz.tk/ PS:我使用过渡css效果。也许它与此有关?日Thnx

1 个答案:

答案 0 :(得分:0)

将您的pageBottom更改为包含位置,宽度和幅度底层属性。我认为问题与你的文本框或内容无关,而且你的页脚没有固定到底部的位置,当视口的高度增加超过1200px时,它只是显示为身体设置的背景颜色,因为它没有堆积的内容。

/* PAGE BOTTOM */
#pageBottom{
 background: #666;
 padding: 1.500em;
 font-size: 0.750em;
 color: #CCC;
 text-align: center;
 overflow: hidden;

//ADDED
position: fixed;
width: 100%;
bottom: 0;
}
相关问题