我希望我的内容是流动的,但当使用 .container-fluid
与 Bootstrap 的网格,我仍然看到填充。
我怎样才能去掉衬垫?
我看到我没有得到与 .row
填充,但我想添加列,一旦我这样做,填充是回来的。
我希望能够在全宽度使用列。
An example:
<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,链接1427 & 1428(v3.2.0)
padding-right: 15px;
padding-left: 15px;
到
padding-right: 0px;
padding-left: 0px;