gridrowstart
Grid-row-start is a CSS Grid Layout property that determines the starting grid line for an item on the row axis, thereby controlling its vertical placement within a grid container. It is typically used together with grid-row-end or the shorthand grid-row to fix an item’s vertical span.
The value of grid-row-start can be a line number (for example 2), a named grid line defined
A common pattern is grid-row-start: 2; grid-row-end: 4;, which places the item from row line 2 up
Notes: This property affects placement only along the vertical axis and requires a grid container (display:
See also grid-row-end, grid-column-start, grid-column-end, grid-area.