If I have a grid which auto-flows columns
display: grid;
grid-auto-flow: column;
So I don't know the number of columns I have
how would I say "I want all columns to be the minimum size for the contents and the last column to fill all available space"?
I'm aware that in the simple case this is achievable with flexbox, I'm trying to bolster my grid knowledge specifically.