The grid-row-start CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
The grid-row-end CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
Like grid-row-start.Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
The grid-column-start CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
Like grid-row-start.Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
The grid-column-end CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
Like grid-row-start.Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
Shorthand version
The grid-row CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
The grid-column CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
Like grid-row.Source: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column