Flex 语法

控制宽度的用法:"min-width: auto;"

display: table 将影响 flex 项目
flex 项目 margin 上下有效
flex 项目设置 height 并不会限制高度,可以改用 min-height
flex 项目 position: absolute; 将元素从正常文档流中移除,但还是受 flex 布局影响

容器的属性

  • flex-direction
  • flex-wrap
  • justify-content
  • align-content
  • align-items

flex-direction 属性决定主轴的方向(即项目的排列方向)。
flex-direction: row | row-reverse | column | column-reverse;

flex-wrap 属性定义,如果一条轴线排不下,如何换行。
flex-wrap: nowrap | wrap | wrap-reverse;

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

justify-content 属性定义了主轴空间分配方式。
justify-content: flex-start | flex-end | center | space-between | space-around | stretch;

align-content 属性定义了交叉轴空间分配方式。如果项目只有一根轴线,该属性不起作用。
align-content: space-between | space-around | space-evenly | stretch

justify-items 属性定义项目在上的对齐方式

align-items 属性定义项目在交叉轴上的对齐方式,没有设置的话项目自动占100%,比如图片被拉长。
align-items: flex-start | flex-end | center | baseline | stretch

项目的属性

可以配合 overflow 压缩项目 box
  • order
  • flex-grow
  • flex-shrink
  • flex-basis
  • flex
  • align-self

order 属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。
flex-grow 属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。
flex-shrink 属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。
flex-basis 属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
flex 属性是 flex-grow, flex-shrink 和 flex-basis 的简写,默认值为0 1 auto。后两个属性可选。
align-self 属性允许单个项目有与其他项目不一样的对齐方式,可覆盖 align-items 属性。默认值为 auto,表示继承父元素的 align-items 属性,如果没有父元素,则等同于 stretch。