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