Bootstrap grid system
Stacked-to-Horizontal
Using a single set of
.col-md-*
grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices.
Mobile and Desktop
Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding
.col-xs-*
.col-md-*
to your columns. See the example below for a better idea of how it all works.
Mobile, tablet, and desktop
Build on the previous example by creating even more dynamic and powerful layouts with tablet
.col-sm-*
classes.
Fluid Offsetting
Move columns to the right using
.col-md-offset-*
classes. These classes increase the left margin of a column by * columns. For example,
.col-md-offset-4
moves
.col-md-4
over four columns.