1. 程式人生 > >微信小程序文字水平垂直居中對齊問題

微信小程序文字水平垂直居中對齊問題

attr lec -a tps .net IE auto https 簡單

我們知道常用的居中對齊方式有很多種例如:

text-align:center;
align-items:center;
justify-content: center;
margin: auto;  #子容器在父容器中居中

但是在view中的文字對齊卻不能簡單的使用text-align: center;來實現,這種辦法只能實現文字的水平居中,

要實現水平垂直居中

可使用如下方案

.td {

display: flex;

align-items: center;

justify-content: center;

}

使用了flex布局控制其中的文字水平和垂直居中

來源:https://blog.csdn.net/qq_32590631/article/details/80411024

微信小程序文字水平垂直居中對齊問題