微信小程序上下垂直居中
2019-05-02 本文已影响0人
回眸一哮
在需要居中的文字的父容器中设置如下样式
.header{
display: flex;
align-items: center;
}
效果如下

如需设置水平居中则
justify-content: center;
在需要居中的文字的父容器中设置如下样式
.header{
display: flex;
align-items: center;
}
效果如下
如需设置水平居中则
justify-content: center;