evenly distribute the flex items within the container code example
Example 1: space between flexbox
justify-content: space-between;
Example 2: css flex
.container {
display: flex; /* or inline-flex */
}
justify-content: space-between;
.container {
display: flex; /* or inline-flex */
}