Grid
- Home
- Grid

Specifying the columns in a grid
Use the 'grid-cols-{n}'
utilities to create grids with n equally sized columns.
Spanning columns
Use the 'col-span-{n}'
utilities to make an element span n columns.
Starting and ending lines
Use the 'col-start-{n}'
and 'col-end-{n}'
utilities to make an element start or end at the nth grid line. These can also be combined with the 'col-span-{n}'
utilities to span a specific number of columns.
Equal width
Every column width same size example.
Specifying the rows in a grid
Use the 'grid-rows-{n}'
utilities to create grids with n equally sized rows.
Spanning rows
Use the 'row-span-{n}'
utilities to make an element span n rows.
Starting and ending lines
Use the 'row-start-{n}'
and 'row-end-{n}'
utilities to make an element start or end at the nth grid line. These can also be combined with the 'row-span-{n}'
utilities to span a specific number of rows.
Controlling grid element placement
Use the 'grid-flow-{keyword}'
utilities to control how the auto-placement algorithm works for a grid layout.
Setting the gap between elements
Use the 'gap-{size}'
to change the gap between both rows and columns in grid and flexbox layouts.
Changing row and column gaps independently
Use the 'gap-x-{size}'
and 'gap-x-{size}'
to change the gap between rows and columns independently.