Problem Statement
Explain the role of the grid-auto-flow property.
Explanation
The `grid-auto-flow` property controls how auto-placed items are inserted into the grid — row by row (`row` default) or column by column (`column`). Setting it to `dense` can fill holes left by larger items, improving packing but possibly reordering elements visually.
Code Solution
SolutionRead Only
.grid { grid-auto-flow: row dense; }