微信小程序水平居中和垂直居中

配合使用

当 display: flex 配合 justify-content: center 使用时可以让view水平居中

水平居中

 display: flex
 justify-content: center

垂直居中

而配合 align-items: center 用时可以实现垂直居中效果

 display: flex
 align-items: center

水平垂直居中

 display: flex
 justify-content: center
 align-items: center

如果没有达到效果,请设置height。

发布了100 篇原创文章 · 获赞 25 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_43576028/article/details/102143956
今日推荐