1. 程式人生 > >[小程式之菜鳥填坑-2]居中問題

[小程式之菜鳥填坑-2]居中問題

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

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佈局控制其中的文字水平和垂直居中