📜  center wrapped flex children - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:45.940000             🧑  作者: Mango

代码示例1
.container {
  display: flex;
  
  justify-content: space-around;
  /* OR */
  justify-content: space-evenly;
}