css3 flex

flex

Flex 是 Flexible Box 的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。

任何一个容器都可以指定为 Flex 布局。

注意:设为 Flex 布局以后,子元素的floatclearvertical-align属性将失效。

 容器的属性

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

flex-direction属性决定主轴的方向(即项目的排列方向)

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

flex-direction: row(默认值):主轴为水平方向,起点在左端。

.box {
    display: flex;
    flex-direction: row;
}

css3 flex

flex-direction: row-reverse(默认值):主主轴为水平方向,起点在右端。

.box {
    display: flex;
    flex-direction: row-reverse;
}

 css3 flex

flex-direction:column 主轴为垂直方向,起点在上沿。

.box {
    display: flex;
    flex-direction: column;
}

css3 flex

flex-direction:column-reverse:主轴为垂直方向,起点在下沿。

.box {
    display: flex;
    flex-direction: column-reverse;
}

css3 flex

 flex-wrap属性定义,如果一条轴线排不下,如何换行

flex-wrap: nowrap | wrap | wrap-reverse

flex-wrap: nowrap 默认值,不换行

.box {
    display: flex;
    flex-wrap: nowrap;
}

css3 flex flex-wrap: wrap:换行,第一行在上方。

.box {
    display: flex;
    flex-wrap: wrap;
}

css3 flexflex-wrap: wrap-reverse:换行,第一行在下方。

.box {
    display: flex;
    flex-wrap: wrap-reverse;
}

css3 flex

 flex-flow属性

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

justify-content属性定义了项目在主轴上的对齐方式。

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

justify-content: flex-start(默认值),左对齐

.box {
    display: flex;
    justify-content: flex-start;
}

css3 flexjustify-content:flex-end:右对齐

.box {
    display: flex;
    justify-content: flex-end;
}

css3 flex

 justify-content: center; 居中

.box {
    display: flex;
    justify-content: center;
}

css3 flex  justify-content: space-between 两端对齐,项目之间的间隔都相等。

.box {
    display: flex;
    justify-content:  space-between;
}

css3 flex justify-content: space-around 每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。 

.box {
    display: flex;
    justify-content: space-around;
}

 css3 flex

 align-items属性定义项目在交叉轴上如何对齐。

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

align-items: stretch :(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。

.box {
    display: flex;
    align-items: stretch ;
}

css3 flex

align-items: flex-start:交叉轴的起点对齐。

.box {
    display: flex;
    align-items: flex-start;
}

css3 flexalign-items: flex-end:交叉轴的终点对齐。

.box {
    display: flex;
    align-items: flex-end;
}

css3 flex align-items: center;  交叉轴的中点对齐

.box {
    display: flex;
    align-items: center
}

css3 flex

  align-items: baseline;  项目的第一行文字的基线对齐。

.box {
    display: flex;
    align-items: baseline
}

css3 flex

 align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。

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

align-content:stretch; 子元素没有设置高的情况下,轴线占满整个交叉轴。

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: stretch
}

css3 flex

align-content:flex-start:与交叉轴的起点对齐  

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start
}

 css3 flex

align-content:flex-end:与交叉轴的终点对齐 

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-end
}

 css3 flex

align-content:center :与交叉轴的中点对齐。

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: center
}

css3 flex

 align-content:space-between:与交叉轴两端对齐,轴线之间的间隔平均分布

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
}

css3 flex

  align-content:space-around每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。

.box {
    display: flex;
    flex-flow: row wrap;
    align-content: space-around;
}

css3 flex

上一篇:认识 Flex 布局


下一篇:****弹性盒