美文网首页
设置居中移动端显示文本偏上问题

设置居中移动端显示文本偏上问题

作者: 小领袖 | 来源:发表于2021-04-27 17:50 被阅读0次

在有背景的view上Android手机文本显示偏上,iOS手机显示正常

显示偏上

.device-main-flag {
  height: 30rpx;
  width: 30rpx;
  background: #ff6e00;
  border-radius: 6rpx;
  font-weight: bold;
  font-size: 20rpx;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10rpx;
}
显示偏上

显示正常

css增加 line-height: normal;

.device-main-flag {
  height: 30rpx;
  width: 30rpx;
  background: #ff6e00;
  border-radius: 6rpx;
  font-weight: bold;
  font-size: 20rpx;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  margin-left: 10rpx;
}
显示正常

相关文章

网友评论

      本文标题:设置居中移动端显示文本偏上问题

      本文链接:https://www.haomeiwen.com/subject/ljoulltx.html