Answers for "align content inside chil of flex center"

2

how center content in css by using flex

display: flex;
    width: 60%;
    justify-content: center;
    margin: 0 auto;
Posted by: Guest on November-02-2020
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 "align content inside chil of flex center"

Browse Popular Code Answers by Language