css Flex容器属性有哪些

1、flex-direction设置主轴的方向

即项目的排列方向。

flex-direction:row|row-reverse|column|column-reverse;

2、flex-wrap

默认情况下,item都排在一条线(又称”轴线”)上。flex-wrap属性定义了,如果一条轴线排不下,item的换行方式。

flex-wrap:nowrap|wrap|wrap-reverse;

3、flex-flow

flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。

.box{
flex-flow:<flex-direction><flex-wrap>;
}

4、justify-content

定义了项目在主轴上的对齐方式。

justify-content:flex-start|flex-end|center|space-between|space-around;

5、align-items

设置了项目在交叉轴上的对齐方式。

align-items:flex-start|flex-end|center|baseline|stretch

6、align-content

多根轴线的对齐方式。

align-content:flex-start|flex-end|center|space-between|space-around|stretch;

以上就是css Flex容器6种属性的介绍,希望对大家有所帮助。更多css学习指路:css教程

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容