Grid Auto Flow
Controls the automatic placement of grid elements.
Class | Properties |
---|---|
gaf-c | grid-auto-flow: column; |
gaf-d | grid-auto-flow: dense; |
gaf-dr | grid-auto-flow: dense row; |
gaf-r | grid-auto-flow: row; |
gaf-rd | grid-auto-flow: row dense; |
Column
This example sets the grid auto flow to column. The items will be placed in the grid by filling each column before moving to the next one.
<div class="p-r tc-white"> <div class="d-g g-4 gaf-c gtc-3 gtr-3 stripes ta-c"> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">A</div> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">B</div> <div class="bg-indigo p-4 rad-1 ta-c">C</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">D</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">E</div> </div></div>
Dense
This example sets the grid auto flow to dense. The items will be placed in the grid in a way that fills in gaps as efficiently as possible.
<div class="p-r tc-white"> <div class="d-g g-4 gaf-d gtc-3 gtr-3 stripes ta-c"> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">A</div> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">B</div> <div class="bg-indigo p-4 rad-1 ta-c">C</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">D</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">E</div> </div></div>
Row
This example sets the grid auto flow to row. The items will be placed in the grid by filling each row before moving to the next one.
<div class="p-r tc-white"> <div class="d-g g-4 gaf-r gtc-3 gtr-3 stripes ta-c"> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">A</div> <div class="bg-d-indigo-4 gc-s-2 p-4 rad-1 ta-c">B</div> <div class="bg-indigo p-4 rad-1 ta-c">C</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">D</div> <div class="bg-d-indigo-4 p-4 rad-1 ta-c">E</div> </div></div>
Row Dense
This example sets the grid auto flow to row dense. The items will be placed in the grid by filling each row first, while also attempting to fill any gaps efficiently.
<div class="d-g gaf-rd g-4 tc- stripeswhite"> <div class="bg-indigo p-4 rad-1 ta-c">A</div> <div class="bg-indigo p-4 rad-1 ta-c">B</div> <div class="bg-indigo p-4 rad-1 ta-c">C</div> <div class="bg-indigo p-4 rad-1 ta-c">D</div></div>
Conditional styles
Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.
You can combine responsive breakpoints like sm:gaf-*
,md:gaf-*
, lg:gaf-*
, and xxl:gaf-*
allows targeting specific utilities in different viewports.
<div class="gaf-c md:gaf-r ..."></div>
Alternatively, you can apply :hover
by using h:gaf-*
utility to override elements and change their values when hovering over them.
<div class="gaf-c h:gaf-r ..."></div>