CSS Grid - fixing first and second column. Third column gets the rest
you can use grid-template-column to fix the size of your grid column. For example, you might want to say 1st and 2nd column has the size of 100px and 200px respectively.
The rest goes to column 3, which takes on auto-fill, don't specify any grid size to it.
Comments