【说站】css Flex容器属性有哪些
2024-12-01
14
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教程
本文教程操作环境:windows7系统、css3版,DELL G3电脑。
更新于:3天前赞一波!1
相关文章
- 【说站】python特殊方法有哪些
- 【说站】css中flex-basis的使用
- 【说站】css flex的排列方式
- 【说站】css Flexbox布局的介绍
- 【说站】css外边距margin是什么
- 【说站】css中Grid模块是什么
- 【说站】css设置行间距的方法
- 【说站】css Flex容器如何理解
- 【说站】css padding内边距的理解
- 【说站】python Axes容器如何绘图
- 【说站】python有哪些编译器
- 【说站】css clamp()函数是什么
- 【说站】php PDO的预处理语句有哪些
- 【说站】css中Min()函数如何使用
- 【说站】css如何使用scale()方法进行缩放
- 【说站】css设置行间距的三种方法
- 【说站】css line-height属性是什么
- 【说站】css点击元素变更颜色的方法
- 【说站】css max函数调整字体
- 【说站】CSS中有哪些定位的方式
文章评论
评论问答