0

我想将页脚粘贴到页面的最底部而没有间距,因此它在每个屏幕上都显示相同。

这是它目前的样子:

http://www.slyfiles.com/login.php

页脚代码:

<div class="footer">
<div class="container">
<span id="footer"> &copy; 2012 SlyFiles &nbsp;<a href="#">About</a>  &nbsp<a     href="#">TOS</a>  &nbsp<a href="#">DMCA</a>  </span>
</div>
</div>

和CSS:

.footer {
background: #1d1d1d;
width: 100%;
height: 32px;
border-top: solid 10px #017cc5;
margin-top: 5px;
}

为什么它不会粘在底部?

谢谢!

4

3 回答 3

1

将此添加到您的 CSS 中.footer

position: fixed;
bottom: 0;
于 2012-09-27T13:58:10.847 回答
0

添加 clear:both 也。

.footer{
clear:both;
}

我关注了http://www.cssstickyfooter.com/

于 2012-09-27T14:07:36.340 回答