CSS grid-auto-flow
CSS grid-auto-flow
The CSS grid-auto-flow
property specifies whether implicity-added elements should be added as rows or columns within a grid or, in other words, it controls how auto-placed items get inserted in the grid and this property is declared on the grid container.
The value row
specifies the new elements should fill rows from left to right and create new rows when there are too many elements (default).
The value column
specifies the new elements should fill columns from top to bottom and create new columns when there are too many elements.
The value dense
invokes an algorithm that attempts to fill holes earlier in the grid layout if smaller elements are added.
Join the conversation