Các tiện ích để kiểm soát cách các phần tử trong grid được đặt tự động.
| Class | Styles |
|---|---|
grid-flow-row | grid-auto-flow: row; |
grid-flow-col | grid-auto-flow: column; |
grid-flow-dense | grid-auto-flow: dense; |
grid-flow-row-dense | grid-auto-flow: row dense; |
grid-flow-col-dense | grid-auto-flow: column dense; |
Sử dụng các tiện ích như grid-flow-col và grid-flow-row-dense để kiểm soát cách thuật toán đặt tự động hoạt động cho bố cục grid:
<div class="grid grid-flow-row-dense grid-cols-3 grid-rows-3 ..."> <div class="col-span-2">01</div> <div class="col-span-2">02</div> <div>03</div> <div>04</div> <div>05</div></div>Prefix a grid-auto-flow utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:
<div class="grid grid-flow-col md:grid-flow-row ..."> <!-- ... --></div>Learn more about using variants in the variants documentation.