CSS

Flex 布局

笔记

Posted by zhangyingji on May 18, 2018

前言

采用 Flex 布局的元素,称为flex container。它的所有子元素自动成为容器成员,称为flex item

简单示例:

/* 块状元素的flex布局 */
.box{
  display: flex;
}

/* 行内元素的flex布局 */
.box{
  display: inline-flex;
}

值得注意的是:

  1. 设为 Flex 布局以后,子元素的float、clear和vertical-align属性将失效
  2. 被绝对定位与固定定位的盒子不参与flex布局(解决方法:多套一层盒子,注意语义化)

参考来源:

  1. 阮一峰,Flex 布局教程:语法篇

容器属性

  • flex-direction
  • flex-wrap
  • ==flex-flow==
  • ==justify-content==
  • ==align-items==
  • align-content
  1. flex-direction
/* 决定主轴的方向(即项目的排列方向)*/
.box {
  flex-direction: row | row-reverse | column | column-reverse;
}

它可能有4个值:

  • row(默认):主轴为水平方向,起点在左端
  • row-reverse:主轴为水平方向,起点在右端
  • column:主轴为垂直方向,起点在上沿
  • column-reverse:主轴为垂直方向,起点在下沿
  1. flex-wrap
/* 定义如果一条轴线排不下,如何换行 */
.box{
  flex-wrap: nowrap | wrap | wrap-reverse;
}

它可能有3个值:

  • nowrap(默认)
  • wrap:换行,第一行在上(左)方
  • wrap-reverse:换行,第一行在下(右)方
  1. flex-flow
/* flex-direction属性和flex-wrap属性的简写形式 */
.box {
  flex-flow: <flex-direction> || <flex-wrap>;
}
  • row nowrap(默认)
  1. justify-content
/* 定义了项目在主轴上的对齐方式 */
.box {
  justify-content: flex-start | flex-end | center | space-between | space-around;
}

它可能取5个值,具体对齐方式与轴的方向有关。下面假设主轴为从左到右。

  • flex-start: 左对齐(默认)
  • flex-end: 右对齐
  • center: 居中
  • space-between 两端对齐
  • space-around 项目两侧的间隔相等。故项目之间的间隔比项目与边框的间隔大一倍
  1. align-items
/* 定义项目在交叉轴上如何对齐 */
.box {
  align-items: flex-start | flex-end | center | baseline | stretch;
}

它可能取5个值。具体的对齐方式与交叉轴的方向有关,下面假设交叉轴从上到下。

  • flex-start:交叉轴的起点对齐
  • flex-end:交叉轴的终点对齐 center:交叉轴的中点对齐
  • baseline: 项目的第一行文字的基线对齐
  • stretch(默认):如果项目未设置高度或设为auto,将占满整个容器的高度
  1. align-content
/* 定义了多根轴线的对齐方式,如果项目只有一根轴线,该属性不起作用 */
.box {
  align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
  • stretch(默认)

项目属性

  • order
  • flex-grow
  • flex-shrink
  • flex-basis
  • ==flex==
  • align-self
  1. order
/* 定义项目的排列顺序。数值越小,排列越靠前 */
.item {
  order: <integer>;
}

默认为0

  1. flex-grow
/* 属性定义项目的放大比例 */
.item {
  flex-grow: <number>;
}

默认为0

  1. flex-shrink
/* 定义了项目的缩小比例 */
.item {
  flex-shrink: <number>; 
}

默认为1,即如果空间不足,该项目将缩小

  1. flex-basis
/* 定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间 */
.item {
  /* default auto */
  flex-basis: <length> | auto; 
}

默认为auto

它可以设为跟width或height属性一样的值(比如350px),则项目将占据固定空间

  1. flex
/* flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选 */
.item {
  flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
}

该属性有两个快捷值:

  • auto (1 1 auto)
  • none (0 0 auto)
  1. align-self
/* 允许单个项目有与其他项目不一样的对齐方式 */
.item {
  align-self: auto | flex-start | flex-end | center | baseline | stretch;
}

默认为auto,表示继承父元素的align-items属性