Flex是Flexible Box的缩写,意为 弹性布局 ,用来为盒状模型提供最大的灵活性。
采用 Flex 布局的元素,称为 Flex 容器(flex container),简称容器。它的所有子元素自动成为容器成员,称为 Flex 项目(flex item),简称项目, 上代码理解理解
任何一个容器都可以指定为Flex布局。行内元素也可以使用Flex布局。
<div class="box">
<div class="item one">项目1div>
<div class="item two">项目2div>
<div class="item three">项目3div>
<div class="item four">项目4div>
div>
.box {
width: 300px;
height: 300px;
background: aqua;
display: flex;
}
.item {
width: 50px;
height: 50px;
background: rgb(243, 62, 92);
font-size: 13px;
color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.box .one {
background: red;
}
.box .two {
background: coral;
}
.box .three {
background: forestgreen;
}
box盒子就是容器, 可以理解为 父盒子; 每个 item 盒子就是 项目, 可以理解为 子盒子、成员
flex-direction属性有四个值:
1、row(默认值):设置主轴为水平方向,起点在左端
当 box 的 flex-direction 设成 row
2、row-reverse:设置主轴为水平方向,起点在右端
当 box 的 flex-direction 设成 row-reverse
3、column:设置主轴为垂直方向,起点在上沿
当 box 的 flex-direction 设成 column
4、column-reverse: 设置主轴为垂直方向,起点在下沿
当 box 的 flex-direction 设成 column-reverse
flex-wrap属性有三个值:
1、norap(默认值):不换行
当 box 的 flex-wrap 设成 nowrap
成员没有达到换行的宽度不会有影响,但是如果总宽度超过了父盒子,成员将被挤压,比如再添加几个成员
<div class="item one">项目1div>
<div class="item two">项目2div>
<div class="item three">项目3div>
<div class="item four">项目4div>
<div class="item four">项目5div>
<div class="item four">项目6div>
<div class="item four">项目7div>
<div class="item four">项目8div>
2、wrap:换行,第一行在上方
当 box 的 flex-wrap 设成 wrap, 这里我把父盒子高去掉了,被分成两行隔太开了,不好看
3、wrap-reverse:换行,第一行在下方
当 box 的 flex-wrap 设成 wrap-reverse
.box {
flex-flow: ;
}
justify-content属性有五个值:
1、flex-start(默认值):左对齐
2、flex-end:右对齐
3、center: 居中
4、space-betweet: 两端对齐,成员之间的间隔全都相等
5、space-around: 每个成员两侧的间隔相等。所以,成员之间的间隔比项目与边框的间隔大一倍
align-items属性有五个值:
1、flex-start:交叉轴的起点对齐
2、flex-end:交叉轴的终点对齐
3、center: 交叉轴的中点对齐
4、baseline: 成员的第一行文字的基线对齐, 这里我给第一个成员设了个padding-top: 15px;
5、stretch(默认值):如果成员未设置高度或设为auto,将占满整个容器的高度, 这里我把成员的高度去掉了
align-content属性有六个值:
1、flex-start:与交叉轴的起点对齐
2、flex-end:与交叉轴的终点对齐
3、center:与交叉轴的中点对齐
4、space-between:与交叉轴两端对齐,轴线之间的间隔平均分布
5、space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍
6、stretch(默认值):轴线占满整个交叉轴
order
flex-grow
flex-shrink
flex-basis
flex
align-self
order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0
.box .one {
background: chocolate;
order: 4;
}
.box .two {
background: coral;
order: 1;
}
.box .three {
background: forestgreen;
order: 3;
}
.box .four {
background: red;
order: 2;
}
flex-grow属性都设为1(给 item类 添加 flex-grow: 1;)这里我把圆角去掉了
给项目2成员的flex-grow属性都设为 2
当所有项目的flex-shrink属性设为 1,项目2的flex-shrink属性为 0
比如我给项目2的flex-basis属性设为 50px
.box .one {
background: chocolate;
flex: 1;
}
.box .two {
background: coral;
flex: 1;
flex-basis: 50px;
}
.box .three {
background: forestgreen;
flex: 1;
}
.box .four {
background: red;
flex: 1;
}
.item {
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}