Grid Auto Rows
Controls the size of grid lines created implicitly.
Class | Property |
---|---|
gar-min | grid-auto-rows: min-content; |
gar-max | grid-auto-rows: max-content; |
gar-auto | grid-auto-rows: auto; |
Min Content
Sets the size of implicitly created rows to the minimum content size.
A long piece of text
B
C
Max Content
Sets the size of implicitly created rows to the maximum content size.
A long piece of text
B
C
Auto
Sets the size of implicitly created rows to adjust automatically based on the available space.
A long piece of text
B
C
Using responsive modifiers
Using responsive breakpoints like sm:gar-*
,
md:gar-*
, lg:gar-*
, and xxl:gar-*
allows targeting specific utilities in
different viewports.
Using hover modifiers
Using :hover
modifiers such as h:gar-*
allows
you to override elements and change their values when hovering over them.