GX博客
首页
专题
最热文章
推荐文章
关于
搜文章
在线工具
首页
专题
最热文章
推荐文章
关于
搜文章
在线工具
GX博客
分享个人 Full-Stack JavaScript 项目开发经验
在线测试 flexbox 规则
子元素个数:8
1
2
3
4
5
6
7
8
flex-direction
伸缩流方向
row (default)
row-reverse
column
column-reverse
flex-wrap
是否换行
nowrap (default)
wrap
wrap-reverse
justify-content
x 轴对齐方式
flex-start (default)
flex-end
center
space-around
space-between
align-items
y 轴对齐方式
stretch (default)
baseline
center
flex-start
flex-end
align-content
仅当有多行元素时才适用
stretch (default)
center
flex-start
flex-end
space-around
space-between
CSS 结果
{ display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; align-items: stretch; align-content: space-between; }
了解更多 flexbox 布局的介绍,请点击
这里
。
×
提示