- flex-direction flex-direction: row | row-reverse | column | column-reverse;
- row(默认值):主轴为水平方向,起点在左端。
- row-reverse:主轴为水平方向,起点在右端。
- column: 。
- column-reverse:主轴为垂直方向,起点在下沿。
- flex-wrap flex-wrap: nowrap | wrap | wrap-reverse;
- (1)nowrap(默认):不换行。
- (2)wrap:换行,第一行在上方。
- (3)wrap-reverse:换行,第一行在下方。
- flex-flow flex-flow: <flex-direction> || <flex-wrap>;
- justify-content justify-content: flex-start | flex-end | center | space-between | space-around;
- flex-start(默认值):左对齐
- flex-end:右对齐
- center: 居中
- space-between:两端对齐,项目之间的间隔都相等。
- space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。
- align-items align-items: flex-start | flex-end | center | baseline | stretch;
- flex-start:交叉轴的起点对齐。
- flex-end:交叉轴的终点对齐。
- center:交叉轴的中点对齐。
- baseline: 项目的第一行文字的基线对齐。
- stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
- align-content align-content: flex-start | flex-end | center | space-between | space-around | stretch;
- flex-start:与交叉轴的起点对齐。
- flex-end:与交叉轴的终点对齐。
- center:与交叉轴的中点对齐。
- space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。
- space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
- stretch(默认值):轴线占满整个交叉轴。
相关文章
- 11-03微信小程序开发之搞懂flex布局1——Flexbox
- 11-03推荐几个【2021年原创】微信小程序毕业设计的课题 小程序毕业设计题目 小程序毕设选题参考 基于微信小程序毕业设计
- 11-03微信小程序获取二维码参数
- 11-03微信小程序 下载视频 图片
- 11-03微信小程序的那些坑
- 11-03微信小程序中的iPhone X适配问题
- 11-031-(微信小程序篇)安装Nginx,配置反向代理
- 11-03微信小程序redirect 到tab不刷新
- 11-03微信小程序计算器后后续
- 11-03微信小程序开发——消除Now you can provide attr `wx:key` for a `wx:for` to improve performance.