Layout Grid
Structure website content using the flexible grid system. Using USWDS's Layout Grid system, the layout grid is powered by flexbox, mobile-first, and based on a 12-column system.
How it Works
The grid system uses a series of containers, rows, and columns to lay out and align content. The following row and corresponding code are an example of how the grid comes together.
This example code creates three equal-width columns on tablet, desktop, and widescreen devices by using our predefined grid classes. The parent grid-container
centers the columns on the page.
The following sections cover how containers, rows, and columns work as part of the layout grid, and introduce additional functionality available using flexbox.
<div class="grid-container"><div class="grid-row"><div class="tablet:grid-col">tablet:grid-col</div><div class="tablet:grid-col">tablet:grid-col</div><div class="tablet:grid-col">tablet:grid-col</div></div></div>
This example code creates three equal-width columns on tablet, desktop, and widescreen devices by using our predefined grid classes. Those columns are centered in the page with the parent grid-container
container.
The following sections break the layout grid down and describe how it works.
Containers, Rows, and Columns
Containers: grid-container
centers the container and gives it a maximum width of widescreen
(1400px). If you would like the grid to span the full width of the page, do not use grid-container
.
grid-container
can also accept any breakpoint width, liketablet-lg
orwidescreen
.By default,
grid-container
has apadding-x
of2 units
at narrow widths, and apadding-x
of4 units
atdesktop
and wider.
Rows: Columns must have a grid-row
as a parent.
Columns: grid-col-[1-12]
indicates the number of columns the item spans out of a possible 12 per row. So, if you want three equal-width columns across, use grid-col-4
for each item.
Additional Functionality
Equal-width columns: With flexbox, grid columns without a specified width will display as equal-width columns. For example, four instances of grid-col
will display as one-quarter-width columns across all sizes. Refer to the auto-layout columns section for more examples.
Gutters: Rows and columns don’t have any gutters by default, but gutters can be added by including grid-gap-sm
, grid-gap
, or grid-gap-lg
at the row level. Refer to gutters for more info.
Media queries: Grid breakpoints are based on minimum-width media queries, meaning they apply to that specific width and all greater widths (e.g., tablet:col-4
applies to tablet
, desktop
, and widescreen
devices but not at mobile-lg
or any width below the tablet
breakpoint). Refer to responsive variants for a full list.
Sass mixins: You can use predefined grid classes (like grid-col-4) for presentational markup or Sass mixins for more semantic markup.
Responsive Variants
Width | Size | Utility Class | Columns | Gutters | Nestable |
---|---|---|---|---|---|
Smallest | >= 0 | .grid-col | 12 | 0 | Yes |
Mobile Large | >= 480px | .mobile-lg:grid-col | 12 | 0 | Yes |
Tablet | >= 640px | .tablet:grid-col | 12 | 0 | Yes |
Desktop | >= 1024px | .desktop:grid-col | 12 | 0 | Yes |
Widescreen | >= 1400px | .widescreen:grid-col | 12 | 0 | Yes |
Auto Layout Columns
Variable-width Content
.grid-col-auto
items fit the natural width of their content.
.grid-col
and .grid-col-fill
items flex to fill the available space as illustrated in the following example row and code.
Responsive Classes
Same at All Breakpoints
For columns that should maintain the same proportion at any viewport width, use the .grid-col
and .grid-col-*
classes. Specify a numbered class when you need a column of a specific width; otherwise, use .grid-col
.
.grid-col-[1-12]
sets a fixed width of [n] grid columns in a 12-column grid.
Stacked Columns at Narrow Widths
Columns are full-width until the narrowest breakpoint specified in a .grid-col
class. For instance, using a single set of tablet:grid-col-*
classes, you can create a basic grid system that starts out stacked before displaying as columns at the tablet breakpoint (tablet:
) as illustrated in the following rows and corresponding code.
Mix and Match
Don’t want your columns to simply stack in some breakpoints? Use a combination of different classes for each breakpoint as needed. See the following example rows and corresponding code for a better idea of how it all works.
Offsetting Columns
.grid-offset-[1-12]
offsets an item by the specified number of grid columns as shown in the following example.
<div class="grid-row"><div class="grid-col-8 grid-offset-4">.grid-col-8.grid-offset-4</div></div>
Column Wrapping
Items wrap when the sum of the grid columns is more than 12 as shown in the following example.
<div class="grid-row"><div class="grid-col-8">.grid-col-8</div><div class="grid-col-3">.grid-col-3</div><div class="grid-col-5">.grid-col-5</div></div>
Gutters
Default Gutter
Add grid-gap
to a grid row to add a gap (or gutter) between each column in the row. The default gap width is 2 units and 4 units at desktop
and higher.
<div class="grid-row grid-gap"><div class="grid-col-4"><div>.grid-col-4</div></div><div class="grid-col-4"><div>.grid-col-4</div></div><div class="grid-col-4"><div>.grid-col-4</div></div></div>
Additional Gutters
To add a larger gap than grid-gap
, use grid-gap-lg
which will add a 32px (4 spacing units) gap between the columns. For adding a smaller gap than grid-gap
, use grid-gap-sm
which adds a gap of 2px. Also, you can add the following system values with grid-gap
:
.grid-gap-2px
.grid-gap-05
.grid-gap-1
.grid-gap-2
.grid-gap-3
.grid-gap-4
.grid-gap-5
.grid-gap-6
<div class="grid-row grid-gap-lg"><div class="grid-col-4"><div>.grid-col-4</div></div><div class="grid-col-4"><div>.grid-col-4</div></div><div class="grid-col-4"><div>.grid-col-4</div></div></div>
Sass Mixins
When generating your CSS from NCIDS source files, you have the option of customizing many system defaults by modifying project theme variables. NCIDS also provides grid mixins for adding grid functionality to custom semantic component CSS.
Variables
Variables and maps determine the number of columns, gutter width, and media-query point at which to begin floating columns. We use variables to generate the predefined grid classes documented on this page, as well as for the custom mixins noted under Utilities settings.
Utilities Settings
Mixins
Mixins can be used in conjunction with grid variables to add grid functionality to semantic component Sass.
Example Usage
You can modify the variables to your custom values or just use the mixins with their default values. Here’s an example of using the default settings to create a two-column layout with a gap.