我们通常用的:(我在view中使用  text-align:center; 就能水平居中)

text-align:center;

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

但是在view中的文字对齐却不能简单的使用text-align: center;来实现,这种办法只能实现文字的水平居中,

要实现水平垂直居中(我是直接在view写的)

.td {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

 

转:https://blog.csdn.net/qq_32590631/article/details/80411024

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐