margin: 20px 20px 90px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
justify-items: center;
When using grid, how do you make sure that the fourth item is in the center instead of the left side?
Example:
I want this:
[ ] [ ] [ ]
[ ]
instead of:
[ ] [ ] [ ]
[ ]
[ ] represents a div element like a Card.