我想我的内容是流动的,但当使用.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>