码迷,mamicode.com
首页 > 微信 > 详细

微信小程序初学之页面布局flex

时间:2017-05-31 16:43:17      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:修改   item   bsp   isp   默认   cti   xss   rect   center   

wxml:

<view class="section">
<view class="section__title">flex-direction: row</view>
<view class="flex-wrp" style="display:flex;flex-direction:row;">
<view class="flex-item bc_green">1</view>
<view class="flex-item bc_red">2</view>
<view class="flex-item bc_blue">3</view>
</view>
</view>
<view class="section">
<view class="section__title">flex-direction: column</view>
<view class="flex-wrp" style="flex-direction:column;display:flex;">
<view class="flex-item bc_green">1</view>
<view class="flex-item bc_red">2</view>
<view class="flex-item bc_blue">3</view>
</view>
</view>

 

wxss

.bc_green{background-color: green;width: 20%;text-align: center;}
.bc_red{background-color: red;width: 20%;text-align: center;}
.bc_blue{background-color: blue;width: 20%;text-align: center;}

技术分享

 

注意:view的display是默认的block,要修改成flex才行

微信小程序初学之页面布局flex

标签:修改   item   bsp   isp   默认   cti   xss   rect   center   

原文地址:http://www.cnblogs.com/SunSong/p/6924607.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!