微信小程序控件 横/纵向排列

时间:2019-02-05 13:13:40   收藏:0   阅读:384

控件(按钮)横向排列 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组件)

技术图片

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!