Grid

  1. Home
Specifying the columns in a grid

Use the 'grid-cols-{n}' utilities to create grids with n equally sized columns.

01
02
03
04
05
06
07
08
09
Spanning columns

Use the 'col-span-{n}' utilities to make an element span n columns.

01
02
03
04
05
06
07
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.

01
02
03
04
Equal width

Every column width same size example.

Column
Column
Column
Specifying the rows in a grid

Use the 'grid-rows-{n}' utilities to create grids with n equally sized rows.

01
02
03
04
05
06
07
08
09
Spanning rows

Use the 'row-span-{n}' utilities to make an element span n rows.

01
02
03
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.

01
02
03
Controlling grid element placement

Use the 'grid-flow-{keyword}' utilities to control how the auto-placement algorithm works for a grid layout.

01
02
03
04
05
Setting the gap between elements

Use the 'gap-{size}' to change the gap between both rows and columns in grid and flexbox layouts.

01
02
03
04
Changing row and column gaps independently

Use the 'gap-x-{size}' and 'gap-x-{size}' to change the gap between rows and columns independently.

01
02
03
04
05
06