Bootstrapのグリッドシステム | Bootstrap grid system

Bootstrapのグリッドシステムは画面の横幅がブレイクポイントより大きいときに、パーツをどのくらいの幅で表示するかを「col- * - * 」というクラス名で指定する仕組みになっています。| Bootstrap's grid system is designed to specify how wide a part should be displayed with the class name "col-*-*" when the width of the screen is larger than the breakpoint.


用意されたブレイクポイントは768、992、1200ピクセルの3つで、それぞれのパーツの幅は「col-sm-*」「col-md-*」「col-lg」というクラス名で指定します。これらのクラス名は複合的にも使用することができます。| There are three breakpoints prepared, 768, 992, and 1200 pixels, and the width of each part is specified by the class names "col-sm- *", "col-md- *", and "col-lg". These class names can also be used in combination.


タイトルA

BON JOVI

タイトルB

DREAM THEATER

タイトルC

Mr BIG



HTML <div class="container">
<div class="row">

<!-- タイトルA, -->
<div class="col-sm-12 col-md-4">
<div class="title">
<div id="waku">
<h1>タイトルA</h1>
<p>BON JOVI</p>
</div>
</div>
</div><!--col-->

<!-- タイトルB, -->
<div class="col-sm-6 col-md-4">
<div class="title">
<div id="waku">
<h1>タイトルB</h1>
<p>DREAM THEATER</p>
</div>
</div>
</div><!--col-->

<!-- タイトルC, -->
<div class="col-sm-6 col-md-4">
<div class="title">
<div id="waku">
<h1>タイトルC</h1>
<p>Mr BIG</p>
</div>
</div>
</div><!--col-->

</div><!--row-->
</div><!--container-->


タイトルAは小画面(768px以上、991px以下)では12分の12、中画面(992px以上、1,200px以下)では12分の4になるように指定されています。| Title A is specified to be 12/12 for small screens (768px or more and 991px or less) and 4/12 for medium screens (992px or more and 1,200px or less).


タイトルB、Cは小画面(768px以上、991px以下)では12分の6、中画面(992px以上、1,200px以下)では12分の4になるように指定されています。| Titles B and C are specified to be 6/12 for small screens (768px or more and 991px or less) and 4/12 for medium screens (992px or more and 1,200px or less).


*尚、ここではBootstapバージョン3.1.1を使用しています。 こちらからダウンロードできます。新しいバージョンをご使用だと機能しない部分も出てきます。| If you use a new version, some parts may not work.