1. 程式人生 > 其它 >【乾貨】微信小程式如何讓view標籤中內容居中

【乾貨】微信小程式如何讓view標籤中內容居中

技術標籤:html+css+js微信小程式小程式csshtmlflex

.container{
    display: flex;    /*設定顯示樣式**/
    align-items: center;    /**子view垂直居中*/
    vertical-align: center; /**垂直居中*/
    justify-content: center; /**內容居中*/
    flex-direction:row; /**子view排列方式row--水平 column--垂直*/
}

效果:
在這裡插入圖片描述