Aligning Flex Elements to Parent with Equal Margins in CSS
The behavior of the space-around value is most often not what you want. Most often, we want to make sure that all specified spaces are equal.
For this purpose, the value space-evenly was invented, which will do what we need:
.parent {
display: flex;
justify-content: space-evenly;
}
Result of code execution: