我有一些网页没有太多的内容,页脚坐在页面的中间,但我想它在底部。
我把所有的网页放在一个“持有人”
#holder { min-height: 100%; position:relative; }
然后对我的页脚使用以下CSS
ul.footer { margin-top: 10px; text-align: center; } ul.footer li { color: #333; display: inline-block; } #footer { bottom: -50px; height: 50px; left: 0; position: absolute; right: 0; }
我的页脚的html
<div class="container"> <div class="row"> <div class="span12"> <div id="footer"> <ul class="footer"> <li>Website built by <a href="#">Fishplate</a></li> <li>Email:exampleemail@gmail.com</li> </ul> </div> </div> </div> </div>
我想保持页脚流体。