目录
基本介绍
布局的传统解决方案,基于盒状模型,依赖 display 属性 + position 属性 + float 属性。它对于那些特殊布局非常不方便,比如,垂直居中就不容易实现。
2009 年,W3C 提出了一种新的方案----Flex 布局,可以简便、完整、响应式地实现各种页面布局。目前,它已经得到了所有浏览器的支持,这意味着,现在就能很安全地使用这项功能
Flex 布局将成为未来布局的首选方案
Flex 是 Flexible Box 的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性
伸缩布局 = 弹性布局 = 伸缩盒布局 = 弹性盒布局 =flex布局
任何一个容器都可以指定为 Flex 布局
css
.box {
display: flex;
}
行内元素也可以使用 Flex 布局
css
.box{
display: inline-flex;
}
Webkit 内核的浏览器,必须加上-webkit
前缀
css
.box{
display: -webkit-flex; /* Safari */
display: flex;
}
注意,设为 Flex 布局以后,子元素的float
、clear
和vertical-align
属性将失效
基本概念
采用 Flex 布局的元素,称为 Flex 容器(flex container),简称"容器"。它的所有子元素自动成为容器成员,称为 Flex 项目(flex item),简称"项目"
容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start
,结束位置叫做main end
;交叉轴的开始位置叫做cross start
,结束位置叫做cross end
项目默认沿主轴排列。单个项目占据的主轴空间叫做main size
,占据的交叉轴空间叫做cross size
父项常见属性
- flex-direction:设置主轴的方向
- justify-content:设置主轴上的子元素排列方式
- flex-wrap:设置子元素是否换行
- align-items:设置侧轴上的子元素排列方式(单行)
- align-content:设置侧轴上的子元素的排列方式(多行)
- flex-flow:复合属性,相当于同时设置了flex-direction和flex-wrap
flex-direction
在 flex 布局中,是分为主轴和侧轴两个方向,同样的叫法有 : 行和列、x 轴和y 轴
- 默认主轴方向就是 x 轴方向,水平向右
- 默认侧轴方向就是 y 轴方向,水平向下
属性值
flex-direction 属性决定主轴的方向(即项目的排列方向)
注意: 主轴和侧轴是会变化的,就看 flex-direction 设置谁为主轴,剩下的就是侧轴。而我们的子元素是跟着主轴来排列的
css
.box {
flex-direction: row | row-reverse | column | column-reverse;
}
属性值 | 说明 |
---|---|
row | 默认值从左到右 |
row-reverse | 从右到左 |
column | 从上到下 |
column-reverse | 从下到上 |
html
<head>
<style>
div {
/* 给父级添加flex属性 */
display: flex;
width: 800px;
height: 300px;
background-color: pink;
/* 默认的主轴是 x 轴 行 row 那么y轴就是侧轴喽 */
/* 我们的元素是跟着主轴来排列的 */
/* flex-direction: row; */
/* 翻转 */
/* flex-direction: row-reverse; */
/* 我们可以把我们的主轴设置为 y轴 那么 x 轴就成了侧轴 */
flex-direction: column;
/* flex-direction: column-reverse; */
}
div span {
width: 150px;
height: 100px;
background-color: purple;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span></div>
</body>
justify-content
justify-content
属性定义了项目在主轴上的对齐方式
css
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
属性值 | 说明 |
---|---|
flex-start | 默认值 从头部开始 如果主轴是x轴,则从左到右 |
flex-end | 从尾部开始排列 |
center | 在主轴居中对齐(如果主轴是x轴则 水平居中) |
space-around | 平分剩余空间 |
space-between | 先两边贴边 再平分剩余空间(重要) |
html
<head>
<style>
div {
display: flex;
width: 800px;
height: 300px;
background-color: pink;
/* 默认的主轴是 x 轴 row */
flex-direction: row;
/* justify-content: 是设置主轴上子元素的排列方式 */
/* 默认值 从头至右 */
/* justify-content: flex-start; */
/* 从尾部开始排列 */
/* justify-content: flex-end; */
/* 居中对齐 */
/* justify-content: center; */
/* 平分剩余空间 */
/* justify-content: space-around; */
/* 先两边贴边,再分配剩余空间 */
justify-content: space-between;
}
div span {
width: 150px;
height: 100px;
background-color: purple;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span><span>4</span></div>
</body>
html
<head>
<style>
div {
display: flex;
width: 800px;
height: 400px;
background-color: pink;
/* 设置主轴为y轴 */
flex-direction: column;
/* 默认值 从上至下 */
/* justify-content: flex-start; */
/* 从下至上 */
/* justify-content:flex-end; */
/* 垂直居中 */
/* justify-content: center; */
/* 平分剩余空间 */
/* justify-content: space-around; */
/* 两边贴边,再平分剩余空间 */
justify-content: space-between;
}
div span {
width: 150px;
height: 100px;
background-color: purple;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span></div>
</body>
flex-wrap
默认情况下,项目都排在一条线(又称"轴线")上。flex-wrap属性定义,flex布局中默认是不换行的
css
.box{
flex-wrap: nowrap | wrap | wrap-reverse;
}
属性值 | 说明 |
---|---|
nowrap | 默认值,不换行 |
wrap | 换行,第一行在上方 |
wrap-reverse | 换行,第一行在下方 |
html
<head>
<style>
div {
display: flex;
width: 600px;
height: 400px;
background-color: pink;
/* flex布局中,默认的子元素是不换行的, 如果装不开,会缩小子元素的宽度,放到父元素里面 */
flex-wrap: nowrap;
/* 换行 第一行在上方 */
/* flex-wrap: wrap; */
/* 换行 第一行在下方 */
flex-wrap: wrap-reverse;
}
div span {
width: 150px;
height: 100px;
margin: 20px;
background-color: purple;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span><span>4</span><span>5</span></div>
</body>
align-items
该属性是控制子项在侧轴(默认是y轴)上的排列方式 在子项为单项(单行)的时候使用
css
.box {
align-items: flex-start | flex-end | center | baseline | stretch;
}
属性值 | 说明 |
---|---|
flex-start | 默认值 从上至下 |
flex-end | 从下至上 |
center | 垂直居中 |
stretch | 拉伸子 盒子不要给高度 |
baseline | 基线对齐 |
html
<head>
<style>
div {
display: flex;
width: 800px;
height: 400px;
background-color: pink;
/* 默认的主轴是 x 轴 row */
flex-direction: column;
/* 主轴居中 */
justify-content: center;
/* 侧轴居中 */
align-items: center;
/* 拉伸,但是子盒子不要给高度 */
/* align-items: stretch; */
}
div span {
width: 150px;
height: 100px;
background-color: purple;
color: #fff;
margin: 10px;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span></div>
</body>
align-content
设置子项在侧轴上的排列方式 并且只能用于子项出现 换行 的情况(多行),在单行下是没有效果的
css
.box {
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
属性值 | 说明 |
---|---|
flex-start | 默认值在侧轴的头部开始排列 |
flex-end | 在侧轴的尾部开始排列 |
center | 在侧轴中间显示 |
space-around | 子项在侧轴平分剩余空间 |
space-between | 子项在侧轴先分布在两头,再平分剩余空间 |
stretch | 设置子项元素高度平分父元素高度,子盒子不要给高度 |
html
<head>
<style>
div {
display: flex;
width: 800px;
height: 400px;
background-color: pink;
/* 换行 */
flex-wrap: wrap;
/* 因为有了换行,此时我们侧轴上控制子元素的对齐方式我们用 align-content */
/* 默认值在侧轴的头部开始排列 */
/* align-content: flex-start; */
/* 在侧轴中间显示 */
/* align-content: center; */
/* 子项在侧轴先分布在两头,再平分剩余空间 */
/* align-content: space-between; */
/* 子项在侧轴平分剩余空间 */
/* align-content: space-around; */
/* 拉伸,但是子盒子不要给高度 */
align-content: stretch;
}
div span {
width: 150px;
/* height: 100px; */
background-color: purple;
color: #fff;
margin: 10px;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span><span>4</span><span>5</span><span>6</span></div>
</body>
align-content 和 align-items 区别
-
align-items 适用于单行情况下, 只有上对齐、下对齐、居中和 拉伸
-
align-content 适应于换行(多行)的情况下(单行情况下无效), 可以设置 上对齐、 下对齐、居中、拉伸以及平均分 配剩余空间等属性值。
-
总结就是单行找 align-items 多行找 align-content
flex-flow
flex-flow 属性是 flex-direction 和 flex-wrap 属性的复合属性
css
.box {
flex-flow: <flex-direction> || <flex-wrap>;
}
html
<head>
<style>
div {
display: flex;
width: 600px;
height: 300px;
background-color: pink;
/* flex-direction: column;
flex-wrap: wrap; */
/* 把设置主轴方向和是否换行(换列)简写 */
flex-flow: column wrap;
}
div span {
width: 150px;
height: 100px;
background-color: purple;
margin: 10px;
}
</style>
</head>
<body>
<div><span>1</span><span>2</span><span>3</span><span>4</span><span>5</span></div>
</body>