Grid System

Grid options

While Bootstrap uses ems or rems for defining most sizes, pxs are used for grid breakpoints and container widths. This is because the viewport width is in pixels and does not change with the font size.

See how aspects of the Bootstrap grid system work across multiple devices with a handy table.

Extra small
<544px
Small
≥544px
Medium
≥768px
Large
≥992px
Extra large
≥1200px
Grid behavior Horizontal at all times Collapsed to start, horizontal above breakpoints
Container width None (auto) 576px 720px 940px 1140px
Class prefix .col-xs- .col-sm- .col-md- .col-lg- .col-xl-
# of columns 12
Gutter width 1.875rem / 30px (15px on each side of a column)
Nestable Yes
Offsets Yes
Column ordering Yes

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. Place grid columns within any .row.

col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-1
col-md-8
col-md-4
col-md-4
col-md-4
col-md-4
col-md-6
col-md-6
						
							<div class="row">
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
								<div class="col-md-1">col-md-1</div>
							</div>
							<div class="row">
								<div class="col-md-8">col-md-8</div>
								<div class="col-md-4">col-md-4</div>
							</div>
							<div class="row">
								<div class="col-md-4">col-md-4</div>
								<div class="col-md-4">col-md-4</div>
								<div class="col-md-4">col-md-4</div>
							</div>
							<div class="row">
								<div class="col-md-6">col-md-6</div>
								<div class="col-md-6">col-md-6</div>
							</div>
						
					

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-* and .col-md-* to your columns. See the example below for a better idea of how it all works.

.col-xs-12 .col-md-8
.col-xs-6 .col-md-4
.col-xs-6 .col-md-4
.col-xs-6 .col-md-4
.col-xs-6 .col-md-4
.col-xs-6
.col-xs-6
						
						<!-- Stack the columns on mobile by making one full-width and the other half-width -->
						<div class="row">
							<div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
							<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
						</div>
						
						<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
						<div class="row">
							<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
							<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
							<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
						</div>
						
						<!-- Columns are always 50% wide, on mobile and desktop -->
						<div class="row">
							<div class="col-xs-6">.col-xs-6</div>
							<div class="col-xs-6">.col-xs-6</div>
						</div>
						
					

Mobile, tablet, desktop

Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.

.col-xs-12 .col-sm-6 .col-md-8
.col-xs-6 .col-sm-4
.col-xs-6 .col-sm-4
.col-xs-6 .col-sm-4
.col-xs-6 .col-sm-4
						
						<!-- Stack the columns on mobile by making one full-width and the other half-width -->
						<div class="row">
							<div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
							<div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
						</div>
						
						<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
						<div class="row">
							<div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
							<div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
							<div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
						</div>
						
					

Column wrapping

If more than 12 columns are placed within a single row, each group of extra columns will, as one unit, wrap onto a new line.

.col-xs-9
.col-xs-4
Since 9 + 4 = 13 > 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.
.col-xs-6
Subsequent columns continue along the new line.
					
						<div class="row">
							<div class="col-xs-9">.col-xs-9</div>
							<div class="col-xs-4">.col-xs-4<br>Since 9 + 4 = 13 > 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.</div>
							<div class="col-xs-6">.col-xs-6<br>Subsequent columns continue along the new line.</div>
						</div>
					
				

Responsive column resets

With the four tiers of grids available you’re bound to run into issues where, at certain breakpoints, your columns don’t clear quite right as one is taller than the other. To fix that, use a combination of a .clearfix and our responsive utility classes.

.col-xs-6 .col-sm-3
.col-xs-6 .col-sm-3
.col-xs-6 .col-sm-3
.col-xs-6 .col-sm-3
						
							<div class="row">
								<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
								<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
							
								<!-- Add the extra clearfix for only the required viewport -->
								<div class="clearfix hidden-sm-up"></div>
							
								<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
								<div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
							</div>
						
					

Responsive Breakpoints

In addition to column clearing at responsive breakpoints, you may need to reset offsets, pushes, or pulls.

.col-sm-5 .col-md-6
.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0
.col.col-sm-6.col-md-5.col-lg-6
.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0
						
						<div class="row">
							<div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
							<div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div>
						</div>
						
						<div class="row">
							<div class="col-sm-6 col-md-5 col-lg-6">.col.col-sm-6.col-md-5.col-lg-6</div>
							<div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0</div>
						</div>
						
					

Offsetting columns

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.

.col-md-4
.col-md-4 .offset-md-4
.col-md-3 .offset-md-3
.col-md-3 .offset-md-3
.col-md-6 .offset-md-3
						
						<div class="row">
							<div class="col-md-4">.col-md-4</div>
							<div class="col-md-4 offset-md-4">.col-md-4 .offset-md-4</div>
						</div>
						<div class="row">
							<div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div>
							<div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div>
						</div>
						<div class="row">
							<div class="col-md-6 offset-md-3">.col-md-6 .offset-md-3</div>
						</div>
						
					

Nesting columns

To nest your content with the default grid, add a new .row and set of .col-sm-* columns within an existing .col-sm-* column. Nested rows should include a set of columns that add up to 12 or fewer (it is not required that you use all 12 available columns).

Level 1: .col-sm-9
Level 2: .col-xs-8 .col-sm-6
Level 2: .col-xs-4 .col-sm-6
						
						<div class="row">
							<div class="col-sm-9">
							Level 1: .col-sm-9
							<div class="row">
								<div class="col-xs-8 col-sm-6">
								Level 2: .col-xs-8 .col-sm-6
								</div>
								<div class="col-xs-4 col-sm-6">
								Level 2: .col-xs-4 .col-sm-6
								</div>
							</div>
							</div>
						</div>
						
					

Column ordering

Easily change the order of our built-in grid columns with .push-md-* and .pull-md-* modifier classes.

.col-md-9 .push-md-3
.col-md-3 .pull-md-9
						
						<div class="row">
							<div class="col-md-9 push-md-3">.col-md-9 .push-md-3</div>
							<div class="col-md-3 pull-md-9">.col-md-3 .pull-md-9</div>
						</div>
						
					

Block

Two Blocks .col-md-6
50%
50%

Three Blocks .col-md-4
33%
33%
33%

Four Blocks .col-md-3
25%
25%
25%
25%

Six Blocks .col-md-2
16.6%
16.6%
16.6%
16.6%
16.6%
16.6%

Auto Responsive

With .col-sm-*, .col-md-*, .col-lg-* classes, it can turn into responsive easily.

1
2
3
4
5
6
7
8
9
10
11
12