how to align all children in center flex code example
Example: center wrapped flex children
.container {
display: flex;
justify-content: space-around;
/* OR */
justify-content: space-evenly;
}
.container {
display: flex;
justify-content: space-around;
/* OR */
justify-content: space-evenly;
}