Flexbox & Grid
Utilities for controlling how elements are sized and placed across grid columns.
Class | Styles |
---|---|
col-span-<number> | grid-column: span <number> / span <number>; |
col-(<custom-property>) | grid-column: var(<custom-property>); |
col-[<value>] | grid-column: <value>; |
col-start-<number> | grid-column-start: <number>; |
-col-start-<number> | grid-column-start: calc(<number> * -1); |
col-start-auto | grid-column-start: auto; |
col-start-(<custom-property>) | grid-column-start: var(<custom-property>); |
col-start-[<value>] | grid-column-start: <value>; |
col-end-<number> | grid-column-end: <number>; |
-col-end-<number> | grid-column-end: calc(<number> * -1); |
col-end-auto | grid-column-end: auto; |
col-end-(<custom-property>) | grid-column-end: var(<custom-property>); |
col-end-[<value>] | grid-column-end: <value>; |
Use col-span-<number>
utilities like col-span-2
and col-span-4
to make an element span n columns:
Use col-start-<number>
and col-end-<number>
utilities like col-start-2
and col-end-3
to make an element start or end at the nth grid line:
These can also be combined with the col-span-<number>
utilities to span a specific number of columns.
Use utilities like col-[<value>]
,col-span-[<value>]
,col-start-[<value>]
, and col-end-[<value>]
to set the grid column size and location based on a completely custom value:
<div class="col-[16_/_span_16] ..."> <!-- ... --></div>
For CSS variables, you can also use the col-(<custom-property>)
syntax:
<div class="col-(--my-columns) ..."> <!-- ... --></div>
This is just a shorthand for col-[var(<custom-property>)]
that adds the var()
function for you automatically.
Prefix grid-column
,grid-column-start
, and grid-column-end
utilities with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<div class="col-span-2 md:col-span-6 ..."> <!-- ... --></div>
Learn more about using variants in the variants documentation.