--- title: The Grid description: Create powerful multi-device layouts quickly and easily with the default 12-column, nestable Foundation grid. If you're familiar with grid systems, you'll feel right at home. If not, you'll learn quickly. video: k1zizfK2xbQ sass: - scss/grid/*.scss - '!scss/grid/_flex-grid.scss' tags: - block grid ---

Become a master of the Foundation Grids to create complex layouts faster and with less code. The new XY Grid is the newest and most powerful version. Stay up-to-date with all the new features in Foundation 6.4 and learn how to migrate to the XY Grid with our online webinar training. You’ll also learn all the useful UI components and Foundation JavaScript to really crush your projects.

Get registered for an upcoming Foundation training →
## Importing
**From Foundation v6.4, the Float Grid is disabled by default**, replaced by the new [XY Grid](xy-grid.html). Unless you need to support IE 10, it is recommended to use the XY Grid.
To use the Float Grid in Foundation v6.4+, you need to: * In CDN link or package managers: import `foundation-float.css` in place of `foundation.css`. * In Sass: set both `$xy-grid` and `$global-flexbox` to `false`. ## Basics Start by adding an element with a class of `.row`. This will create a horizontal block to contain vertical columns. Then add elements with a `.column` class within that row. Specify the widths of each column with the `.small-#`, `.medium-#`, and `.large-#` classes. **Foundation is mobile-first.** Code for small screens first, and larger devices will inherit those styles. Customize for larger screens as necessary.

Watch this part in video

By default `.column` has an alias `.columns` (see the `$grid-column-alias` option) —the only difference is grammar.

Disabling the alias can reduce the Foundation CSS file size from 3 to 5%. It is recommended if the alias is not used.

edit on codepen button
```html
```
24
4
64
full3
full6
full3
62
68
full2
3
9
full4
full8
65
67
full6
full6
--- ### Small Grids Small grids expand to large screens easier than large grids cram into small screens.

Watch this part in video

edit on codepen button
```html
2
10
3
9
```
2
10
3
9
--- ### Medium Grid Medium sized screens will inherit styles from small, unless you specify a different layout using the medium grid classes.

Watch this part in video

edit on codepen button
```html
2
10
3
9
```
2
10
3
9
--- ## Advanced ### Combined Column/Row If you have just a single column, you can save some markup by combining the `.row` and `.column` classes together on the same element. You can still nest more grids inside this container like usual.

Column rows can use sizing classes like .small-8, but only when used as a top-level container—not when nested inside another row.

edit on codepen button
```html
Row column
```
Row column
--- ### Fluid Row Normally, a row is always 1200 pixels wide. Make a row completely fluid by adding the `.expanded` class.

Watch this part in video

edit on codepen button
```html
``` --- ### Nesting You can nest the grids indefinitely, though at a certain point it will get absurd.

Watch this part in video

edit on codepen button
```html
8
8 Nested
8 Nested Again
4
4
4
```
8
8 Nested
8 Nested Again
4
4
4
--- ### Offsets Move blocks up to 11 columns to the right by using classes like `.large-offset-1` and `.small-offset-3`.

Watch this part in video

edit on codepen button
```html
1
11
1
10, offset 1
1
9, offset 2
1
8, offset 3
```
1
11
1
10, offset 1
1
9, offset 2
1
8, offset 3
--- ### Incomplete Rows In order to work around browsers' different rounding behaviors, Foundation will float the last column in a row to the right so the edge aligns. If your row doesn't have a count that adds up to 12 columns, you can tag the last column with a class of `.end` in order to override that behavior. Alternatively, you can set the `$grid-column-align-edge` variable to `false` to turn off this behavior entirely.
edit on codepen button
```html
3
3
3
3
3
3 end
```
3
3
3
3
3
3 end
--- ### Gutters #### Responsive Gutters The grid *gutter*—the space between two columns in a row, and the space between the edge of a grid and the edge of the page—is responsive, and becomes wider on larger screens. Breakpoint | Gutter Size -----------|------------ `small` | 20px `medium` | 30px If you're using the Sass version of Foundation, you can change these defaults by editing the `$grid-column-gutter` variable map: ```scss $grid-column-gutter: ( small: 20px, medium: 30px, ); ``` To add more gutter definitions, add new lines to the map. The breakpoint names used here must match a breakpoint name in your project's `$breakpoints` map. #### Static Gutters If you prefer using one gutter size for every breakpoint, just use a single number for the `$grid-column-gutter` variable: ```scss $grid-column-gutter: 30px; ``` You can also explicitly set the gutter size for a particular grid row by adding the `.gutter-[size]` class. This is useful when your using responsive gutters but specific components need static gutters. ```html
This grid always has small gutters
``` --- ### Collapse/Uncollapse Rows The `.collapse` class lets you remove column gutters (padding). There are times when you won't want each media query to be collapsed or uncollapsed. In this case, use the media query size you want and collapse or uncollapse and add that to your row element. Example shows no gutter at small media size and then adds the gutter to columns at medium.
edit on codepen button
```html
Removes gutter at large media query
Removes gutter at large media query
```

Scale the browser down to a medium size to see the difference.

On a small screen, I have gutters!

On a medium screen, I have gutters!

On a large screen, I have no gutters!

On a small screen, I have gutters!

On a medium screen, I have gutters!

On a large screen, I have no gutters!

--- ### Centered Columns Center your columns by adding a class of `.small-centered` to your column. Large will inherit small centering by default, but you can also center solely on large by applying a `.large-centered` class. To uncenter on large screens, use `.large-uncentered`.

Watch this part in video

edit on codepen button
```html
3 centered
6 centered
9 centered
11 centered
```
3 centered
6 centered, large
9 centered small
11 centered
--- ### Source Ordering Using these source ordering classes, you can shift columns around between our breakpoints. This means if you place sub-navigation below main content on small displays, you have the option to position the sub-navigation on either the left or right of the page for large displays. Prefix push/pull with the size of the device you want to apply the styles to. `.medium-push-#`, `.large-push-#` is the syntax you'll use. Use the number 0 instead to reset a push/pull, such as `.medium-push-0` or `.large-pull-0`.

Watch this part in video

edit on codepen button
```html
10
2, last
9
3, last
8
4, last
7
5, last
6
6, last
```
10
2, last
9
3, last
8
4, last
7
5, last
6
6, last
--- ### Block Grids Block grids are a shorthand way to create equally-sized columns. Add a class of the format `.[size]-up-[n]` to change the number of columns within the row. By default, the max number of columns you can use with block grid are 8. Adding the `.column-block` class to columns will apply a bottom margin equal to the width of gutters.

Watch this part in video

edit on codepen button
```html_example
``` --- ## Building Semantically Our grid CSS is generated with a powerful set of Sass mixins, which you can use in your own code to build a semantic grid. ### Rows Use the `grid-row()` mixin to create a row. ```scss .container { @include grid-row; } ``` --- ### Columns Use the `grid-column()` mixin to create a column. There are a number of ways to define the width of the column. ```scss .main-content { // Use the full column count (100%) @include grid-column; // Use a column count (33%); @include grid-column(4); // Use a percentage (15%) @include grid-column(15%); // Use a custom fraction (20%) @include grid-column(1 of 5); } ``` The grid column calculator can also be accessed as a function. This gives you the percentage value, without any of the grid column CSS. ```scss .main-content { width: grid-column(1 of 7); } ``` To center a column semantically. Use ´grid-column-position(center);´. ```scss .centered-column { @include grid-column-position(center); } ``` --- ### Multiple Grids By default, all grids use the number of columns set by the `$grid-column-count` variable. However, this can be selectively overridden within an instance of a row. In this example, the grid is 16 columns instead of the normal 12. Any references to column math inside the mixin will use the new column count. ```scss .container { @include grid-row(16) { .main-content { // 11/16 = 68.75% @include grid-column(11); } .sidebar { // 5/16 = 31.25% @include grid-column(5); } } } ``` You can also temporarily change the grid context without outputting any row CSS, by using the `grid-context()` mixin. ```scss @include grid-context(7) { .sidebar { @include grid-column(4); } } ``` Every other grid feature, from sizing to offsets to source ordering, can also be accessed with a mixin. Pair them with the `breakpoint()` mixin to make your grid responsive. Refer to the Sass documentation below to learn how each mixin works. ```scss .main-content { // The mixins have shorthands, too! @include grid-col; @include breakpoint(medium) { // Changes size only @include grid-col-size(8); // Changes position only @include grid-col-pos(4); } } ``` ### Custom Block Grid Use the `grid-layout()` mixin to create your own block grid. By default the mixin takes 3 parameters: - Number of columns - The child element selector - An optional padding value The padding value can be set to `$grid-column-gutter` to use the values from that map. This will then generate different paddings at different breakpoints. Alternatively supply a numeric value (without a unit type) to output a static rem value. Here's an example: ```scss .gallery { @include grid-layout(3, '.gallery-item', $grid-column-gutter); } ``` That outputs this CSS: ``` .gallery > .gallery-item { width: 33.33333%; float: left; padding-left: 0.625rem; padding-right: 0.625rem; } @media screen and (min-width: 40em) { .gallery > .gallery-item { padding-left: 0.9375rem; padding-right: 0.9375rem; } } .gallery > .gallery-item:nth-of-type(1n) { clear: none; } .gallery > .gallery-item:nth-of-type(3n+1) { clear: both; } .gallery > .gallery-item:last-child { float: left; } ``` ---