css – 使用Twitter Bootstrap将页脚粘到页面底部

前端之家收集整理的这篇文章主要介绍了css – 使用Twitter Bootstrap将页脚粘到页面底部前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些网页没有太多的内容,页脚坐在页面的中间,但我想它在底部

我把所有的网页放在一个“持有人”

#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>&nbsp;&nbsp;
          <li>Email:exampleemail@gmail.com</li>
        </ul>
      </div>
    </div>
  </div>
</div>

我想保持页脚流体。

解决方法

正如在您的代码基于此解决方案的评论中讨论的: http://stackoverflow.com/a/8825714/681807

这个解决方案的关键部分之一是添加height:100%到html,body所以#footer元素有一个基本高度来工作 – 这从您的代码中缺少:

html,body{
    height: 100%
}

你也会发现,你会遇到使用底部:-50px的问题,因为这将推动你的内容下没有太多的内容。你必须添加margin-bottom:50px到#footer之前的最后一个元素。

原文链接:https://www.f2er.com/css/223151.html

猜你在找的CSS相关文章