uni-app develops WeChat applet, how to center and bottom align text vertically and horizontally

<view class="main-content-phone-content-list flex-center">Recharge History</view>

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

bottom aligned

.baseline{
        display: flex;
        align-items: baseline; 
    }

Guess you like

Origin blog.csdn.net/weixin_45395283/article/details/133124406