flex-direction属性决定主轴的方向(即项目的排列方向)
注意:主轴和侧轴是会变化的,就看flex-direction设置谁为主轴,剩下的就是侧轴。而我们的 子元素都是跟着主轴来排列的
| 属性值 | 说明 |
|---|---|
| row | 默认从左到右 |
| row-reverse | 从右到左 |
| column | 从上到下 |
| column | 从下到上 |
DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
div{
width: 800px;
height: 300px;
background-color: pink;
display: flex ;
/* 默认的按照行排列的,元素是按照主轴排列的 */
/* flex-direction: row; */
/* flex-direction: row-reverse; */
flex-direction: column;
}
div span{
width: 200px;
height: 200px;
background-color: green;
}
style>
head>
<body>
<div>
<span>1span>
<span>2span>
<span>3span>
div>
body>
html>
justify-content属性定义了项目在主轴上的对齐方式
注意:使用这个属性之前一定要确定好主轴是那个
| 属性值 | 说明 |
|---|---|
| flex-start | 默认值从头部开始,如果主轴是x轴,则从左到右 |
| flex-end | 从尾部开始排列 |
| center | 在主轴居中对齐(如果主轴是x轴则水平居中) |
| space-around | 平分剩余空间 |
| space-between | 先两边贴边 再平分剩余空间(重要) |





flex默认让子元素在一行显示,项目都排在一条线上(又称“轴线”),如果装不开会缩小子元素的宽度。
| 属性值 | 说明 |
|---|---|
| nowrap | 默认值,不换行 |
| wrap | 换行 |

设置flex-wrap:wrap之后

该属性是控制子项在侧轴(默认是y轴)上的排列方式,在子项为单项的时候使用
| 属性值 | 说明 |
|---|---|
| flex-start | 默认值 从上到下 |
| flex-end | 从下到上 |
| center | 挤在一起居中(垂直居中) |
| streth | 拉伸 |

从下到上

垂直居中

去掉height

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
div{
width: 800px;
height: 400px;
background-color: pink;
display: flex ;
justify-content: center;
align-items: flex-start;
align-items: flex-end;
align-items: center;
align-items: stretch;
}
div span{
width: 150px;
height: 100px;
background-color: green;
margin: 10px;
}
style>
head>
<body>
<div>
<span>1span>
<span>2span>
<span>3span>
div>
body>
html>
设置子项在侧轴上的排列方式并且只能用于子项出现换行的情况(多行),单行的情况下是无效的
| 属性值 | 说明 |
|---|---|
| flex-start | 默认值在侧轴的头部开始排列 |
| flex-end | 在侧轴的尾部开始排列 |
| center | 在侧轴中间显示 |
| space-around | 子项在侧轴平分剩余空间 |
| space-between | 子项在侧轴先分布在两头,再平分剩余空间 |
| stretch | 设置子项元素高度平分父元素高度 |

在侧轴的尾部开始排列




去掉子元素的hight

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
div{
width: 800px;
height: 400px;
background-color: pink;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
align-content: flex-end;
align-content: center;
align-content: space-around;
align-content: space-between;
align-content: stretch;
}
div span{
width: 150px;
background-color: green;
margin: 10px;
}
style>
head>
<body>
<div>
<span>1span>
<span>2span>
<span>3span>
<span>4span>
<span>5span>
<span>6span>
div>
body>
html>
flex-flow属性是flex-direction和flex-wrap的复核属性

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
div{
width: 800px;
height: 400px;
background-color: pink;
display: flex;
/* flex-direction: column; */
/* flex-wrap: wrap; */
flex-flow: column wrap;
}
div span{
width: 150px;
height: 100px;
background-color: green;
margin: 10px;
}
style>
head>
<body>
<div>
<span>1span>
<span>2span>
<span>3span>
<span>4span>
<span>5span>
<span>6span>
div>
body>
html>
flex属性定义子项目分配剩余空间,用flex来表示占多少份数。默认为0
例子1: 两端固定,中间自适应布局

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
section{
display: flex;
margin: 0 auto;
width: 800px;
height: 150px;
background-color: pink;
}
section div:nth-child(1){
width: 100px;
height: 150px;
background-color: red;
}
section div:nth-child(3){
width: 100px;
height: 150px;
background-color: blue;
}
section div:nth-child(2){
width: 100px;
height: 150px;
flex: 1;
background-color: green;
}
style>
head>
<body>
<section>
<div>1div>
<div>2div>
<div>3div>
section>
body>
html>
例子2:等分份数

align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示可以继承父元素的align-items属性,如果没有父元素,则等同于stretch。

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style>
section{
display: flex;
margin: 0 auto;
width: 800px;
height: 450px;
background-color: pink;
}
section div:nth-child(1){
width: 150px;
height: 150px;
background-color: red;
}
section div:nth-child(3){
width: 150px;
height: 150px;
align-self: flex-end;
background-color: blue;
}
section div:nth-child(2){
width: 150px;
height: 150px;
background-color: green;
}
style>
head>
<body>
<section>
<div>1div>
<div>2div>
<div>3div>
section>
body>
html>
数值越小,排列越靠前,默认为0
注意:和z-index不一样

section div:nth-child(1){
width: 150px;
height: 150px;
background-color: red;
}
section div:nth-child(3){
width: 150px;
height: 150px;
order: -1;
background-color: blue;
}
section div:nth-child(2){
width: 150px;
height: 150px;
background-color: green;
}