首先考虑小网格,请参阅: http: //getbootstrap.com/css/#grid-options。750 px 的最大容器宽度可能对您来说太小了(另请阅读:为什么 Bootstrap 3 将容器宽度强制设置为特定大小?)
使用小网格时,使用媒体查询来设置最大容器宽度:
@media (min-width: 768px) { .container { max-width: 750px; } }
其次还阅读了这个问题:Bootstrap 3 - 940px width grid? ,可能重复?
12 x 60 = 720 像素的列和 11 x 20 = 220 像素
网格两侧也会有 20px 的间距,因此 220 + 720 + 40 为 980px
没有'@ColumnWidth'
您的列宽度将根据您在 variables.less 中的设置动态计算。你可以设置@grid-columns
和@grid-gutter-width
。列的宽度将通过 mixins.less 中的 grid.less 设置为百分比:
.calc-grid(@index, @class, @type) when (@type = width) {
.col-@{class}-@{index} {
width: percentage((@index / @grid-columns));
}
}
更新
将 @grid-gutter-width 设置为 20px;, @container-desktop: 940px;, @container-large-desktop: @container-desktop 并重新编译引导程序。