Answers for "flex css how to align children row in the center and at the stasrt"

1

center wrapped flex children

.container {
  display: flex;
  
  justify-content: space-around;
  /* OR */
  justify-content: space-evenly;
}
Posted by: Guest on March-01-2021

Code answers related to "flex css how to align children row in the center and at the stasrt"

Browse Popular Code Answers by Language