微信小程序开发--flex详细解读
Posted dreamchaserhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序开发--flex详细解读相关的知识,希望对你有一定的参考价值。
一、align-items和其参数 stretch / baseline
注:sretch只有在交叉轴没有设置固定长度的情况下才有作用
baseline是以第一个子元素为基准,后面的子元素与第一个子元素对齐。
二、flex-wrap 和其参数 row-wrap (默认) / wrap /
flex-wrap:作用---换行
flex布局,基础内容已经结束,欢迎大家一起交流。
<view class="root"><view class="box1">1</view><view class="box2">2</view><view class="box3">3</view></view>
.rootdisplay: flex;/* 方块以列的方式排布 *//* flex-direction: column; *//* 把方块的位置调转 *//* flex-direction: column-reverse; *//* justify-content: space-evenly; */flex-direction: row;justify-content: center;/* align-items: baseline; */flex-wrap:wrap;height: 370px;.root viewwidth: 150px;height: 100px;.box1">bisque;font-size:30px;
.box2">blue;font-size:20px;
.box3">pink;font-size:60px;
以上是关于微信小程序开发--flex详细解读的主要内容,如果未能解决你的问题,请参考以下文章