微信小程序元素水平居中或垂直居中
一、水平居中

1、排列方向为水平方向
.father{
display: flex;
align-items: center;
}
2、排列方向为竖直方向
.father{
display: flex;
flex-direction: column;
align-items: center;
}
二、垂直居中
1、排列方向为水平方向
.father{
display: flex;
flex-direction:column;
justify-content: center;
}
2、排列方向为竖直方向
.father{
display: flex;
justify-content: center;
}
三、中心居中
1、排列方向为水平方向
.father{
display: flex;
align-items: center;
justify-content: center;
}
2、排列方向为竖直方向
.father{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

相关文章:

  • 2022-02-18
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-05
  • 2022-02-17
  • 2021-12-05
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2021-09-05
相关资源
相似解决方案