📜  css 水平展开子级 - CSS 代码示例

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

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