CSS grid grow columns if rest are empty

so I had this previously done with flex but now I moved to grid in case I need to overflow to another row.

grid-template-columns: repeat(20, auto);
display: grid;

this however doesn't "flex" when the rest of the columns are empty
image.png
Was this page helpful?