--- id: Grid section: layouts cssPrefix: pf-v5-l-grid ---import './Grid.css' ## Examples ### Smart (responsive) ```html
item 1
item 2
item 3
item 4
item 5
item 6
item 7
item 8
item 9
item 10
item 11
item 12
``` ### Smart with overrides (responsive) ```html
item 1
item 2
item 3
item 4
item 5
item 6
item 7
item 8
item 9
item 10
item 11
item 12
item 13
item 14
``` ### Base ```html
12 col
11 col
1 col
10 col
2 col
9 col
3 col
8 col
4 col
7 col
5 col
``` ### Gutter ```html
12 col
11 col
1 col
10 col
2 col
9 col
3 col
``` ### Responsive ```html
1 / 6 / 11 col
11 / 6 / 1 col
2 / 6 / 10 col
10 / 6 / 2 col
3 / 6 / 9 col
9 / 6 / 3 col
4 / 6 / 8 col
8 / 6 / 4 col
5 / 6 / 7 col
7 / 6 / 5 col
``` ### Nested ```html
12 col
10 col
6 col
6 col
4 col
8 col
2 col
``` ### Offsets ```html
11 col, offset 1
10 col, offset 2
9 col, offset 3
8 col, offset 4
``` ### Row spans ```html
8 col
4 col, 2 row
2 col, 3 row
2 col
4 col
2 col
2 col
2 col
4 col
2 col
4 col
4 col
``` ### Ordering Ordering - Ordering can be applied to nested .pf-v5-l-grid and .pf-v5-l-grid\_\_items. Spacing may need to be managed based on how items are ordered. Because order could apply to an innumerable number of elements, order is set inline as `--pf-v5-l-grid--item--Order{-on-[breakpoint]}: {order}`. ### Ordering example ```html
Item A
Item B
Item C
``` ### Responsive ordering ```html
Item A
Item B
Item C
``` ### Grouped ordering ```html
Set 1, Item A
Set 1, Item B
Set 1, Item C
Set 1, Item D
Set 2, Item A
Set 2, Item B
Set 2, Item C
Set 2, Item D
``` ### Grouped, responsive ordering ```html
Set 1, Item A
Set 1, Item B
Set 1, Item C
Set 1, Item D
Set 2, Item A
Set 2, Item B
Set 2, Item C
Set 2, Item D
``` ### List type ```html ``` ## Documentation ### Overview The grid layout is based on CSS Grid’s two-dimensional system of columns and rows. This layout styles the parent element and its children to achieve responsive column and row spans as well as gutters. ### Usage | Class | Applied to | Outcome | | -- | -- | -- | | `.pf-v5-l-grid` | `
` | Initializes the grid layout. | | `.pf-v5-l-grid__item` | `
` | Explicitly sets a child of the grid. This class isn't necessary, but it is included to keep inline with BEM convention, and to provide an entity that will later be used for applying modifiers. | | `.pf-m-gutter` | `.pf-v5-l-grid` | Adds space between children by using the globally defined gutter value. | | `.pf-m-all-{1-12}-col{-on-[breakpoint]}` | `.pf-v5-l-grid` | Defines grid item size on grid container at optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). | | `.pf-m-{1-12}-col{-on-[breakpoint]}` | `.pf-v5-l-grid__item` | Defines grid item size at optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). Although not required, they are strongly suggested. If not used, grid item will default to 12 col. | | `.pf-m-{2-x}-row{-on-[breakpoint]}` | `.pf-v5-l-grid__item` | Defines grid item row span at optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). For row spans to function correctly, the value of of the current row plus the grid items to span must be equal to or less than 12. Example: .pf-m-8-col.pf-m-2-row + .pf-m-4-col + .pf-m-4-col. There is no limit to number of spanned rows. | | `--pf-v5-l-grid--item--Order{-on-[breakpoint]}: {order}` | `.pf-v5-l-grid > .pf-v5-l-grid`, `.pf-v5-l-grid__item` | Modifies the order of the grid layout element at optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). |