1. 程式人生 > >微信小程序控件 橫/縱向排列

微信小程序控件 橫/縱向排列

圖片 技術 按鈕 direction flex http col png button

控件(按鈕)橫向排列 wxss

1 .view_class {
2   display: flex;
3   flex-direction: row;
4   justify-content: center;
5 }

控件(按鈕)縱向排列 wxss

1 .view_class {
2   flex-direction: column;
3   justify-content: center;
4 }

效果圖:(wxml是一個view內嵌 3個button組件)

技術分享圖片

微信小程序控件 橫/縱向排列