我想将页脚粘贴到页面的最底部,没有间距,所以在每个屏幕上都显示相同的内容。
目前的情况如下:
http://www.slyfiles.com/login.php
页脚代码:
<div class="footer">
<div class="container">
<span id="footer"> © 2012 SlyFiles <a href="#">About</a>  <a href="#">TOS</a>  <a href="#">DMCA</a> </span>
</div>
</div>
和CSS:
.footer {
background: #1d1d1d;
width: 100%;
height: 32px;
border-top: solid 10px #017cc5;
margin-top: 5px;
}
为什么不坚持到底?
谢谢!
答案 0 :(得分:1)
将此添加到.footer
的CSS:
position: fixed;
bottom: 0;
答案 1 :(得分:0)
答案 2 :(得分:0)