弹性居中

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/besttoby01/article/details/80348688

    弹性居中布局

.box{
  display: flex;
  align-items: center;
}

可以用于表格,

.box{
  display: flex;
}
.item{
  flex: 1;
}
弹性均分布局
.box {
  display: flex;
  flex-direction: row;
}

从左向右排序

.box {
  display: flex;
  flex-wrap: wrap;
}
换行,第一行在下方

猜你喜欢

转载自blog.csdn.net/besttoby01/article/details/80348688