Bootstrap grid examples
Basic grid layouts to get you familiar with building within the Bootstrap grid system.
Three equal columns
Get three equal-width columns starting at tablets and scaling to desktops and large desktops. On mobile devices, tablets and below, the columns will automatically stack.
.col-sm-4
.col-sm-4
.col-sm-4
Three unequal columns
Get three columns starting at tablets and scaling to desktops and large desktops of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.
.col-sm-3
.col-sm-6
.col-sm-3
Two columns
Get two columns starting at tablets and scaling to desktops and large desktops
Full width, single column
No grid classes are necessary for full-width elements.
Two columns with two nested columns
Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns starting at tablets and scaling to desktops and large desktops, with another two (equal widths) within the larger column.
At mobile device sizes, tablets and down, these columns and their nested columns will stack.
Offset, push, and pull resets
Reset offsets, pushes, and pulls at specific breakpoints.
.col-sm-5
.col-sm-5 .col-sm-offset-2
.col-sm-6
.col-sm-6 .col-sm-offset-0 .col-sm-pull-1