How to set grid-row on grids that are subgrids?
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 ?