flex布局2009年就出现了,但是普及度一直不是很高,记得自己刚学前端的时候感觉position属性、display属性、float属性布局挺方便的,也一直没深究当下流行的一些flex布局。后来在慕课网上看黄轶老师讲的一篇关于vue的入门课程《高仿饿了么》,一个移动端的vue课程,关于移动端的适配当时看老师不是用的传统的rem来布局,而是用了px+flex,顿时两眼冒星,感觉flex实用性很高。后来看了七月老师的小程序课程,七月老师围绕flex在小程序的应用讲了一个多小时,顿时感觉flex真是强大无比。搜了一些关于flex的资料,感觉阮一峰老师真的是当今程序员楷模,作为金融界最优秀的程序员,老师一直致力于分享最前沿的技术与知识,本文主要总结于阮一峰老师的博客Flex 布局教程:语法篇,然后想通过自己手打一遍所有例子方便自己了解更深入。
基本概念
采用flex布局的元素,称为flex容器。它的所有子元素自动成为容器成员,称为flex项目。可以看如下图:
flex container我们可以看成flex容器,它默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。
项目默认沿主轴排列。单个项目占据的主轴空间叫做main size,占据的交叉轴空间叫做cross size。
容器的属性
-
flex-direction属性
flex-direction属性决定主轴的方向(即项目的排列方向)
.box {flex-direction: row | row-reverse | column | column-reverse}
如上面代码所示:它可能存在4个值。
row(默认值):主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。
具体可以看如下图所示:
-
flex-wrap属性
默认情况下,项目都在一条线上,但是如果内容过多,一条线排列不下怎么办?那么就需要引用flex-wrap属性来定义了。
.box {flex-wrap: nowrap | wrap | wrap-reverse}
如上面代码所示,它可能存在3个值
nowrap(默认值):不换行。
wrap:换行,第一行在上方。
wrap-reverse:换行,第一行在下方。
-
flex-flow属性
flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。
.box {flex-flow: <flex-direction> || <flex-wrap>}
看个人习惯,可以分开用两个属性写,也可以连在一起就用这一个属性来表达。
-
justify-content属性
justify-content属性定义项目在主轴上的对齐方式
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
如上代码所示:它可能存在5个值
flex-start(默认值):左对齐
flex-end:右对齐
center:居中对齐
space-between:两端对齐,项目之间的间隔都相等
space-around:每个项目两侧的间距相等。所以,项目之间的间隔比项目与边框的间隔大一倍
-
align-items属性
align-items属性定义项目在交叉轴上的对齐方式
.box {
align-items: flex-start | flex-end | center | baseline | stretch;
}
大体用法与justify-content属性相差不大,主要是定义的轴方向不同,它可能存在5个值
flex-start:交叉轴的起点对齐。
flex-end:交叉轴的终点对齐。
center:交叉轴的中点对齐。
baseline:项目中的第一行文字的基线对齐。
stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
具体可参照如下图:
-
align-content属性
align-content属性定义了多根轴线(多行)的对齐方式。如果项目只有一根轴线,该属性不起作用。
.box {
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
flex-start:与交叉轴的起点对齐
flex-end:与交叉轴的终点对齐(此处没重合是因为我设置了margin-bottom)
center:与交叉轴的中点对齐
space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。
space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
stretch(默认值):轴线占满整个交叉轴。
常见的容器属性就以上这些,而说完了容器属性,那么包含在这个容器里面的每一个项目又具有哪些属性呢?
项目属性
-
order属性
order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。看下面一段代码:
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
<div class="list">3</div>
<div class="list">4</div>
<div class="list">5</div>
<div class="list">6</div>
<div class="list">7</div>
<div class="list">8</div>
<div class="list">9</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: space-between;
}
.list {
width: 100px;
height: 100px;
background: yellow;
margin-right: 10px;
text-align: center;
line-height: 100px;
}
.list:nth-child(9) {
order: -1;
}
.list:nth-child(2) {
order: 2;
}
</style>
第二个list我们将order属性设置为2,第九个我们设置为-1,最小的将出现在最前面,而最大的将出现在最后面,于是得到如下效果图:
-
flex-grow属性
flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。
如果所有项目的flex-grow属性都为1,则它们将等分剩余空间(如果有的话)。如果一个项目的flex-grow属性为2,其他项目都为1,则前者占据的剩余空间将比其他项多一倍。
此处倍数的缩放我们将如上代码做下调整,可能看的更清楚。
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
<div class="list">3</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: space-between;
}
.list {
height: 100px;
background: yellow;
margin-right: 10px;
flex-grow: 1;
text-align: center;
line-height: 100px;
}
.list:nth-child(2) {
flex-grow: 2;
}
.list:nth-child(3) {
margin-right: 0;
}
</style>
把中间的list单独设置了flex-grow属性为2,即它占据空间是1和3的两倍,注意此处没有设置list的宽度。得到如下效果图
-
flex-shrink
flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。
如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。
负值对该属性无效。此处还有一点注意:容器属性中不要设置换行也就是flex-wrap:wrap设置之后该属性无效,因为宽度不足自动换行啦!
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
<div class="list">3</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
align-content: space-between;
}
.list {
height: 160px;
background: yellow;
margin-right: 10px;
flex-shrink: 1;
text-align: center;
line-height: 100px;
}
.list:nth-child(1) {
flex-shrink: 0;
}
.list:nth-child(3) {
margin-right: 0;
}
list宽度合计480超过父级宽度400,等比例缩小,但是list的第一个由于flex-shrink属性设置为0,即它还是保持原样。得到如下效果图:
-
flex-basis属性
flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
<div class="list">3</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
align-content: space-between;
}
.list {
width: 100px;
height: 100px;
background: yellow;
margin-right: 10px;
text-align: center;
line-height: 100px;
}
.list:nth-child(1) {
flex-basis: 150px;
}
.list:nth-child(3) {
margin-right: 0;
}
每个list的宽度为100px,然后我们单独将的flex-bas第二个list的flex-basis属性设置为150px,得到如下效果图:
此处来个小总结,其实我们在实际开发应用中,很少会单独去分别设置flex-grow、flex-shrink、flex-basis的属性。因为实际中的布局其实往往不会涉及到太复杂的变化,大部分我们都只会使用flex属性来编写,这个属性也比较重要。
-
flex属性
flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。
该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto)。
具体怎么用呢?举两个简单的例子:
-
等比例平分宽度:
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
align-content: space-between;
}
.list {
height: 100px;
background: yellow;
flex: 1;
text-align: center;
line-height: 100px;
}
.list:nth-child(2) {
background: red;
}
我们不用给list设置宽度,只用设置flex:1,两个list就平分了item的宽度,得到如下效果图:
-
预留宽度剩下平分
<div class="item">
<div class="list">1</div>
<div class="list">2</div>
<div class="list">3</div>
</div>
<style>
.item {
width: 400px;
height: 350px;
background: blue;
display: flex;
flex-direction: row;
align-content: space-between;
}
.list {
height: 100px;
background: yellow;
flex: 1;
text-align: center;
line-height: 100px;
}
.list:nth-child(2) {
flex: 0 0 200px;
background: red;
}
.list:nth-child(3) {
background: gray;
}
看上述代码很明显,我们只是增加了一个list,将2的flex属性设置0 0 200px,代表第二个list单独占据宽度200px,然后剩下的宽度给第一个list和第三个list平分,这可以说是移动端布局的利器。得到如下效果图
总结:容器中的项目用到的更多的其实是这个flex属性,用来做自适应宽度也确实非常方便,更多的情况大家可以一一去尝试,不过一般情况大多数用的都是这两种!
-
align-self属性
align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
.list {align-self: auto | flex-start | flex-end | center | baseline | stretch;}
除了多个auto属性外其余用法和容器中的align-items属性用法差不多,这里就不一一枚举了,实际项目中用到的频率也不是很高,贴张图大家应该就能理解了:
关于flex的基本语法其实也就以上那些,当然常用的可能还可以精简,flex并不复杂,用起来也很方便,感兴趣的小伙伴可以好好看一下,断断续续整理了2天,如有错误或不严谨的地方,请务必给予指正!
觉得还不过瘾的小伙伴可以移驾阮一峰老师的flex布局教程——实例篇看阮一峰老师关于flex布局实现骰子的教程。