twitter-bootstrap – 引导3 容器流体与网格添加不必要的填充

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 引导3 容器流体与网格添加不必要的填充前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想我的内容是流动的,但当使用.container-fluid与Bootstrap的网格,我仍然看到填充。如何摆脱填充?

我看到,我没有得到与.row的填充,但我想添加列,一旦我做,填充回来:O。

我想要能够使用全宽的列。

一个例子:

<div class="container-fluid">
    <div class="row">
      <div class="col-sm-6">
    <p>Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
  </div> 
  <div class="col-sm-6">
    <p>Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
  </div> 
</div>

解决方案我有:

覆盖bootstrap.css,linke 1427& 1428(v3.2.0)

padding-right:15px;
padding-left:15px;

padding-right:0px;
padding-left:0px;

解决方法

你还应该添加一个“行”到每个容器,这将“修复”这个问题!
<div class="container-fluid">
   <div class="row">
        Some text
   </div>
</div>

http://jsfiddle.net/3px20h6t/

原文链接:https://www.f2er.com/bootstrap/234571.html

猜你在找的Bootstrap相关文章