文字两端对齐

 如图:       

文字两端对齐:wxml


  商户名称
  客户姓名
  手机号
  地址
  商户类型
  账号
  密码

wxss:若安卓的系统,text-align-last:justify一步即可

.column{
  display: flex;
  flex-direction: column;
  margin-left: 20rpx;
  font-size: 30rpx;
}
text{
  display: block;
  width: 130rpx;
  text-align-last: justify;
}

ios系统则需要伪类元素

text{
  width: 130rpx;
  text-align: justify;
  text-align-last:justify;
  text-justify: distribute-all-lines;
}
text{
  content: '';
  width:100%;
  display: inline-block;
  height: 0;
}

 

你可能感兴趣的:(文字两端对齐)