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;
    }
}
posted @ 2020-05-19 16:15  TBHacker  阅读(597)  评论(0编辑  收藏  举报