Grids
Grid options
See how aspects of the Bootstrap grid system work across multiple devices with a handy table.
Extra small <576px |
Small ≥576px |
Medium ≥768px |
Large ≥992px |
Extra large ≥1200px |
|
---|---|---|---|---|---|
Grid behavior | Horizontal at all times | Collapsed to start, horizontal above breakpoints | |||
Max container width | None (auto) | 540px | 720px | 960px | 1140px |
Class prefix | .col- |
.col-sm- |
.col-md- |
.col-lg- |
.col-xl- |
# of columns | 12 | ||||
Gutter width | 20px (10px on each side of a column) | ||||
Nestable | Yes | ||||
Offsets | Yes | ||||
Column ordering | Yes |
Sm Grid-Example
Columns collapse at 576px
Md Grid-Example
Columns collapse at 768px
Lg Grid-Example
Columns collapse at 992px
Xl Grid-Example
Columns collapse at 1200px
Grid-Example
Using a single set of .col-sm-*
classes, you can create a basic grid system that starts out stacked on extra small devices before becoming horizontal on desktop (medium) devices.
Offset (Max-Auto)
Move columns to the right using .offset-md-*
classes.
These classes increase the left margin of a column by * columns.
For example, .offset-md-4
moves .col-md-4
over four columns.
With the move to flexbox in v4, you can use margin utilities like .mr-auto
to force sibling columns away from one another.