I want to center my 7 images, I set 4 columns for each row:
The code is like this :
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
Instead I want to set 4 columns in the first row, and 3 items in the second row, so it will look like centered. How to do that ?