.container {
display: grid;
// I WANT THE MIN TO BE THE SAME 25% AS FOR THE COLUMNS
grid-template-rows: repeat(17, minmax(WHAT GOES HERE?, 35vh));
// 25% WIDTH COLUMNS
grid-template-columns:
repeat(4, 25%);
}
I'm not using vw because it includes the scrollbar so these % widths are based on the body container (that does not include the scrollbar).
Ive been unable to get the min of the row height to be equal to the width of the columns (25% of the width of the container).
Is there any way to do this without javascript?
Consider the new container query feature and their new unit. You won't have issue with scrollbar