I have boxes of all different widths 4 in each column I want to show the same width size.
display: grid;
grid-template-columns: repeat(4, 1fr);
justify-items: center;
using the code above There are 4 columns in each column, but each has a different width.