How to set grid-row on grids that are subgrids?
16:09 27 Dec 2025

In this youtube tutorial the author sets grid-template-rows to auto auto auto such that the subgrid items get 3 rows each.

Then later he replaces the grid-template-rows:auto auto auto setting with grid-row:1/4 on the CSS for each subgrid.

I'm trying to understand why auto auto auto is interchangeable with grid-row:1/4 ?

html css css-grid