css grid repeat rows with height fit contnet code example
Example 1: css grid make all rows same height
grid-auto-rows: 1fr;
Example 2: css grid repeat
repeat(/*Number of repeats*/, /*Code to be repeated*/)
.gridContainer {
grid-template-columns: repeat(4, 100px); /*Creates 4 columns, each 100px in width*/
grid-template-rows: repeat(2, 250px); /*Creates 2 rows, each 250px in height*/
}