I have a grid css layout that renders beautifully into thirds when there are at LEAST 3 items or more
grid-template-columns: repeat(3, auto);
However when I have less elements the grid loses its tight column width of 33% and if there is one item its almost full width. Is there a minimum column width property that keeps the column width?