TL;DR: Is there anything like table-layout: fixed for CSS grids?
table-layout: fixed
I tried to create a year-view calendar with a big 4x3 grid for t
The previous answer is pretty good, but I also wanted to mention that there is a fixed layout equivalent for grids, you just need to write minmax(0, 1fr) instead of 1fr as your track size.
minmax(0, 1fr)
1fr