I'm attempting to have a CSS Grid in which the grid-template-rows
have the following definition:
.grid-container {
display: grid;
grid-template-rows: 20px repeat(auto-fill, 1fr);
}
Now obviously, the above doesn't work. I hope that my erroneous code shows what I'm intending to do well enough. To put it in English: first row I want to be (for sake of example) 20 pixels in height; the variable (non-definite; could be 2, could be 20) remaining rows should be equal portions of the remaining height. Can someone tell me why the above doesn't work, and what (if anything) will do what I'm intending?