まず、スモール グリッドを検討してください。 http://getbootstrap.com/css/#grid-optionsを参照してください。750 px の最大コンテナー幅はおそらく小さいでしょう (また、読んでください:なぜ Bootstrap 3 はコンテナーの幅を特定のサイズに強制するのですか? )
Small グリッドを使用する場合、メディア クエリを使用して max-container 幅を設定します。
@media (最小幅: 768px) { .container { 最大幅: 750px; } }
次に、この質問もお読みください: Bootstrap 3 - 940px width grid? 、重複の可能性はありますか?
列の場合は 12 x 60 = 720px、11 x 20 = 220px
また、グリッドの両側に 20 ピクセルのガターがあるため、220 + 720 + 40 で 980 ピクセルになります
「いいえ」@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));
}
}
update
@grid-gutter-width を 20px;、@container-desktop: 940px;、@container-large-desktop: @container-desktop に設定し、ブートストラップを再コンパイルします。