---
layout: single
property_name: grid-row
---
Shorthand property for
The grid item's row start and end are automatically set.
The grid item starts before the first row and ends just before the third one.
The grid item spans 3 rows.
The grid items starts before the first row and spans for 4 rows, creating a new one in the process.
You can use an area name to "copy" its row start and end positions.
#grid-row
grid-row-start and grid-row-end.default
grid-row: auto auto;
grid-row: 1 / 3;
grid-row: span 3;
grid-row: 1 / span 4;
grid-row: header;