Skip to content
Announcing the new Pro Zone. Check it out!

grid-row Property in CSS Grid Layouts

grid-row is a shorthand for the grid-row-start and grid-row-end properties.

In other words, instead of writing:

.grid-item1 {
grid-row-start: 1;
grid-row-end: 5;
}

You can alternatively use the grid-row property to shorten your code like so:

.grid-item1 {
grid-row: 1 / 5;
}