弹性布局 flex 的公共的css文件

/* 弹性布局 */
.flex{
  display:flex;
}
.flex1{
  flex:1;
}
.flex-column {
  flex-direction: column;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.align-baseline {
  align-items: baseline;
}

 

posted @ 2023-12-22 14:39  smil、梵音  阅读(37)  评论(0编辑  收藏  举报