grid-row-start specifies where the selected grid item should start (or span) along the grid container’s column (block) axis.
The grid-row-start
property accepts the following values:
auto
<row-line-number>
span <number-of-rows>
Example 1: How to Auto-Start the Selected Grid Item Following the Normal Row Flow
Try Editing It
The snippet above used the auto
value to auto-start grid-item1
according to the normal row layout flow.
Example 2: How to Start the Selected Grid Item at Row Line 3
Try Editing It
The snippet above used the grid-row-start
property to start grid-item1
at row line 3
.
CodeSweetly adsLearn CSS Grid with Images
Use beautiful images to learn CSS Grid.
Find out more
Example 3: How to Span the Selected Grid Item across Two Rows
Try Editing It
The snippet above used the span 2
value to span grid-item1
across two rows.