Grid auto-fill - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

1
2
3
4

Grid auto-fit - grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

1
2
3
4

Flex space around - justify-content: space-around;

1
2
3
4

Flex space evenly - justify-content: space-evenly;

1
2
3
4

Flex space between - justify-content: space-between;

1
2
3
4