对于 Bootstrap 3.0 或更高版本,请参阅此答案
我们只在.span1
这里查看类(12 宽网格上的一列),但您可以通过从以下位置删除左边距来实现您想要的:
.row-fluid [class*="span"] { margin:0 } // line 571 of bootstrap responsive
然后将.row-fluid .span1
' 宽度更改为等于 100% 除以 12 列(8.3333%)。
.row-fluid .span1 { width: 8.33334% } // line 632 of bootstrap responsive
您可能希望通过添加一个额外的类来做到这一点,该类允许您保持基本网格系统不变:
.row-fluid [class*="NoGutter"] { margin-left:0 }
.row-fluid .span1NoGutter { width: 8.33334% }
<div class="row-fluid show-grid">
<div class="span1NoGutter">1</div>
</div>
您也可以对所有其他列重复此模式:
.row-fluid .span2NoGutter { width:16.66667%; margin-left:0 } // 100% / 6 col
.row-fluid .span4NoGutter { width:25%; margin-left:0 } // 100% / 4 col
.row-fluid .span3NoGutter { width:33.33333%; margin-left:0 } // 100% / 3 col
or
.row-fluid .span4NoGutter { width:25% }
.row-fluid [class*="NoGutter"] { margin-left:0 }
* EDIT(坚持使用默认网格)
如果需要默认网格系统,则默认宽度为940px(即.container和.span12类);因此,简单来说,您需要将 940 除以 12。这相当于 12 个 78.33333px 宽的容器。
所以 bootstrap.css 的第 339 行可以这样编辑:
.span1 { width:78.33333px; margin-left:0 }
or
.span1 { width:8.33334%; margin-left:0 }
// this should render at 78.333396px (78.333396 x 12 = 940.000752)