flex图片垂直居中

html

<view class="person_info_more">
    <image class="more" src="/images/common/more_gray.png" />
</view>

css

.person_info_more {
    display: flex;
    align-items: center; /*垂直居中*/
    justify-content: center; /*水平居中*/
    .more {
        width: 14rpx;
        height: 24rpx;
    }
}

相关文章:

  • 2021-12-05
  • 2021-11-09
  • 2021-12-04
  • 2021-05-16
  • 2021-07-05
  • 2021-07-08
  • 2022-12-23
猜你喜欢
  • 2021-12-05
  • 2022-12-23
  • 2022-03-10
  • 2022-12-23
相关资源
相似解决方案