Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。
1、任何一个容器都可以指定为Flex布局。
#box {
display: flex;
height: 400px;
width: 500px;
border: 10px solid red;
}
2、行内元素也可以用flex布局
.box{
display: inline-flex;
}
3、Webkit内核的浏览器,必须加上-webkit前缀。
.box{
display: -webkit-flex; /* Safari */
display: flex;
}
一、容器的属性
flex-direction (元素排列方向)
row, row-reverse, column, column-reverse
flex-wrap (换行)
nowrap, wrap, wrap-reverse
flex-flow (以上两者的简写)
flex-direction || flex-wrap
justify-content (水平对齐方式)
flex-start, flex-end, center, space-between, space-around
align-items (垂直对齐方式)
stretch, flex-start, flex-end, center, baseline
align-content (多行垂直对齐方式)
stretch, flex-start, flex-end, center, space-between, space-around
- flex-direction 决定主轴的对齐方向,分别有四个属性:
row(默认值):主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 10px solid black;
}
.inner {
height: 100px;
width: 100px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">1</div>
<div class="inner">2</div>
<div class="inner">3</div>
</div>
</body>
</html>
- flex-wrap :定义子元素超过一行,如何换行,分别有三个属性:
nowrap(默认值):默认不换行。,如果子元素超过父元素的宽度或者高度,会自动在主轴方向压缩
wrap:换行,第二行在第一行下面,从左到右
wrap-reverse:换行,第二行在第一行上面,从左到右;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 5px solid black;
}
.inner {
height: 100px;
width: 100px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">1</div>
<div class="inner">2</div>
<div class="inner">3</div>
<div class="inner">4</div>
<div class="inner">5</div>
<div class="inner">6</div>
</div>
</body>
</html>
主轴是x轴,默认不换行,但是父元素的宽度是500,子元素明显大于父元素宽度,会默认宽度变窄;
-
flex-flow:是flex-direction 和flex-wrap的简写形式,默认是 row nowrap
flex-flow:flex-direction|flex-wrap ; -
justify-content: 子元素在主轴对齐方式
flex-start(默认值):左对齐
flex-end:右对齐
center: 居中
space-between:两端对齐,项目之间的间隔都相等。
space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 5px solid black;
}
.inner {
height: 100px;
width: 100px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner2 {
height: 100px;
width: 80px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner3 {
height: 100px;
width: 150px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">11</div>
<div class="inner2">22</div>
<div class="inner3">33</div>
</div>
</body>
</html>
5.align-items:交叉轴如何对齐,如果flex-direction:row和row-reverse 那么交叉轴就是y轴,如果是column和column-reverse那么交叉轴是x轴
flex-start:交叉轴的起点对齐。
flex-end:交叉轴的终点对齐。
center:交叉轴的中点对齐。
baseline: 项目的第一行文字的基线对齐。
stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 5px solid black;
align-items: flex-start;
}
.inner {
height: 100px;
width: 100px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner2 {
height: 100px;
width: 80px;
margin:50px 10px 10px 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner3 {
height: 100px;
width: 150px;
margin: 20px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">11</div>
<div class="inner2">22</div>
<div class="inner3">33</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 5px solid black;
align-items: stretch;
}
.inner {
/* height: 100px;
width: 100px;*/
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner2 {
/* height: 100px;
width: 80px;*/
margin:50px 10px 10px 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
.inner3 {
/* height: 100px;
width: 150px;*/
margin: 20px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">11</div>
<div class="inner2">22</div>
<div class="inner3">33</div>
</div>
</body>
</html>
二 有六个属性设置在子元素项目上:
order 排列顺序,数值,默认0
“integer”
flex-grow 如图示7,定义放大比例,默认0,即如果存在剩余空间,也不放大。
“number”
flex-shrink 如图示8,定义缩小比例,默认1,如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。
“number”
flex-basis 定义项目占据的主轴空间,默认auto。会根据flex-direction定义的主轴(水平或者垂直),定义项目本来的大小,跟width或者height一样。
flex 推荐,以上三个的缩写,默认 0 1 auto
“flex-grow” “flex-shrink” “flex-basis”
align-self 如图示9,单个项目有与其他项目不一样的对齐方式,可覆盖align-items
“auto”,“flex-start”,“flex-end”,“center”,“baseline”,“stretch”
1. order 子元素排列的位置默认是按照html先后顺序来排列的,html结构谁在前面默认就排列在前面;order的作用就是改变子元素排列顺序
order:默认(0) 值越小越靠前,
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#box {
display: flex;
height: 400px;
width: 500px;
border: 5px solid black;
flex-wrap: wrap;
}
.inner {
height: 100px;
width: 100px;
margin: 10px;
font-size: 20px;
text-align: center;
background-color: #00a0e9;
}
</style>
</head>
<body>
<div id="box">
<div class="inner">11</div>
<div class="inner">22</div>
<div class="inner">33</div>
<div class="inner">44</div>
<div class="inner">55</div>
<div class="inner" style="order: -1">66</div>
</body>
</html>
2.flex-grow 放大比例 默认是0 当有放大空间的时候,值越大,放大的比例越大
flex-grow:0
3.flex-shrink:缩小比例 默认是1 值越大,缩小的时候比例越小;
4.flex-basis 属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
5. flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。
6.align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
除了auto是表示继承父元素,其他的跟align-items是一样的。