Flexbox Layout(弹性盒布局)是一种在 CSS 中用于设计复杂布局结构的模型。它提供了更加高效、简便的方式来对容器内的子元素进行排列、对齐和分布
使用弹性布局,最重要的一个概念就是主轴与交叉轴(副轴,侧轴),主轴由flex-direction
定义,另一根轴垂直于它
这里一定不要主观认为,主轴就是横向(水平),交叉轴就是纵向的(垂直),主轴是水平还是垂直排列,以及
justify-content
与align-items
等样式的排列方向,都是由主轴方向flex-direction
来定义的
弹性容器属性,设置在需要开启弹性布局的容器中,也就是父级容器
display:定义弹性容器表现形式
flex-direction:定义主轴的排列方向
横向
(默认值)横向并翻转左右顺序
纵向
纵向并翻转上下顺序
flex-wrap:定义子容器宽度在超出父容器宽度时,子容器是否自动换行
不允许
自动换行(默认值)允许
自动换行允许
自动换行并翻转两行顺序
flex-flow:flex-direction 和 flex-wrap 的简写形式
横向
排列,换行行为与关键词一致为保证代码的易读性,在编写代码时,推荐使用拆分形式书写
justify-content:定义子容器在主轴上的对齐方式
align-items: 定义子容器在交叉轴上的对齐方式
align-content: 定义子容器在多轴(多行)上的对齐方式,此样式只在开启 flex-wrap 自动换行时生效
弹性项目属性,设置在已经开启弹性布局的弹性项目中,也就是子级容器
order:定义项目的排列顺序
flex-grow:定义项目在分配多余空间时的放大比例
不会
放大(默认值)flex-shrink:定义项目在空间不足时的缩小比例
会
按照相等的比例缩小(默认值)flex-basis:定义项目在分配多余空间之前的基准值
flex:flex-grow、flex-shrink 和 flex-basis 的简写形式
flex-grow:0,flex-shrink:1,flex-basis:auto
,项目在分配多余空间时不会
相对增长,项目在空间不足时会
相对收缩(默认值)flex-grow:1,flex-shrink:1,flex-basis:0%
,项目会在分配多余空间时会
相对增长,空间不足时会
相对收缩flex-grow:1,flex-shrink:1,flex-basis:200px
,项目在分配多余空间时会
相对增长,空间不足时会
相对收缩,默认大小200px
flex-grow:0,flex-shrink:0,flex-basis:auto
,项目在分配多余空间时不会
相对增长,项目在空间不足时不会
相对收缩flex-grow:1,flex-shrink:1,flex-basis:auto
,项目会在分配多余空间时会
相对增长,空间不足时会
相对收缩在实际开发中,建议优先使用 Flex 属性,这样写有利于浏览器渲染
align-self:设置单个子元素在交叉轴上的对齐方式,覆盖父容器的 align-items 属性
下面我将使用这个示例模板来进行,弹性布局的效果演示(后续示例仅展示关键代码)
#app
:定义了一个页面底板并使用弹性布局设置在页面中央位置(仅用于布局无意义).container
:定义了一个弹性容器,它的子元素.item
会沿着主轴横向排列,使用容器右下角的按钮可快捷调整容器大小.item
:定义了.container
子容器的样式,用于演示示例
玄子Share-弹性布局演示案例
"app">
玄子Share-弹性布局演示案例
"container">
"item">1
"item">2
"item">3
"item">4
"item">5
通过调整
.container
的尺寸可以观察到,当父级容器空间不足时,子元素的宽度会被挤压,以容下子元素
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
}
flex-direction: row
可以看到这个属性的效果,和默认只写一个display: flex
的效果是一致的,子元素从左到右依次排列(默认效果)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row-reverse;
}
flex-direction: row-reverse
这个属性的效果,和flex-direction: row
的效果是相反的,子元素从右到左依次排列,并翻转子元素的顺序
.container {
height: 600px;
/*=======Flex=======*/
display: flex;
flex-direction: column;
}
flex-direction: column
这个属性的效果为,子元素从上到下依次排列
.container {
height: 600px;
/*=======Flex=======*/
display: flex;
flex-direction: row-reverse;
}
flex-direction: column-reverse
这个属性的效果,和flex-direction: column
的效果是相反的,子元素从下到上依次排列,并翻转子元素的顺序
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
flex-wrap: nowrap
这个属性的效果与,只写一个display: flex
效果一致,如果父容器宽度不足,则会挤压子元素宽度(默认效果)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
flex-wrap: wrap
这个属性的效果为,当父容器宽度不足时,子元素会自动换行,如果父容器宽度实在不足,则会挤压子元素宽度
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap-reverse;
}
flex-wrap: wrap-reverse
这个属性的效果为,当父容器宽度不足时,子元素会自动换行,但换行效果是反向的即从下到上换行
.container {
/*=======Flex=======*/
display: flex;
flex-flow: row wrap;
}
flex-flow: column wrap
这个属性是flex-direction
与flex-wrap
的简写形式,当前样式表示,主轴横向排列,自动换行
.container {
/*=======Flex=======*/
display: flex;
flex-flow: row wrap;
}
flex-flow: column wrap
当前样式表示,主轴纵向排列,自动换行
.container {
/*=======Flex=======*/
display: flex;
flex-flow: row;
}
flex-flow: row
若只写一个flex-direction
的关键字,则遵守flex-direction
关键字的规则
.container {
/*=======Flex=======*/
display: flex;
flex-flow: wrap;
}
flex-flow: wrap
若只写一个flex-wrap
的关键字,则flex-direction
排列方向为默认横向排列,换行行为遵守flex-wrap
关键字的规则
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
}
justify-content: flex-start
这个属性的效果,与flex-direction:row
的默认效果一致,子元素沿主轴方向,依次排列(默认效果)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
justify-content: flex-end
这个属性的效果,与justify-content: flex-start
的效果相反,子元素沿主轴反方向,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
justify-content: center
这个属性的效果为,子元素沿主轴方向居中对齐并,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
justify-content: space-between
这个属性的效果为,子元素沿主轴方向,两端子元素对齐边距,中间子元素等量分配剩余空间,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
justify-content: space-around
这个属性的效果为,子元素沿主轴方向,每个子元素等量分配剩余空间到左右两侧,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
}
justify-content: space-evenly
这个属性的效果为,子元素沿主轴方向,每个子元素等量分配剩余空间,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
}
设置
justify-content
与flex-wrap: wrap
属性后,父容器宽度不足时,子容器自动换行,换行后子容器排列,并遵守justify-content
的规则
.container {
/*=======Flex=======*/
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-evenly;
}
flex-direction: column
当主轴为纵轴时,子元素排列方向依照主轴纵向排列,并遵守justify-content
的规则,(主轴)纵向等距对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;
}
外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传
align-items: flex-start
这个属性的样式与默认效果一致,子元素沿侧轴顶部对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-end;
}
外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传
align-items: flex-end
这个属性的样式与默认效果相反,子元素沿侧轴底部对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
align-items: center
这个属性的样式为,子元素沿侧轴中心位置对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: baseline;
}
.item:first-child {
width: 200px;
height: 200px;
line-height: 200px;
}
align-items: baseline
这个属性的样式为,子元素沿侧轴中,高度最高的子元素的中心位置为基线对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
flex-direction: column
当主轴为纵轴时,子元素排列方向依照主轴纵向排列,并遵守align-items: center
的规则,(侧轴)横向居中对齐
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: flex-start;
}
align-content: flex-start
表示在多轴情况下,侧轴的对齐方式为顶部对齐(只有在开启flex-wrap
换行后才有多轴,否则此样式无效)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: center;
}
align-content: center
表示在多轴情况下,侧轴的对齐方式为居中对齐(只有在开启flex-wrap
换行后才有多轴,否则此样式无效)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: flex-end;
}
align-content: flex-end
表示在多轴情况下,侧轴的对齐方式为底部对齐(只有在开启flex-wrap
换行后才有多轴,否则此样式无效)
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: space-around;
}
align-content: space-around
表示在多轴情况下,子元素沿主侧方向,每行子元素等量分配剩余空间到侧轴两侧,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: space-between;
}
align-content: space-between
表示在多轴情况下,子元素沿侧轴方向,两端子元素对齐边距,中间子元素等量分配剩余空间,依次排列
.container {
/*=======Flex=======*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: space-evenly;
}
align-content: space-evenly
表示在多轴情况下,子元素沿主侧方向,每行子元素等量分配剩余空间,依次排列
.container {
width: 600px;
height: 300px;
background-color: darkgray;
overflow: auto;
resize: both;
/*通过 resize 样式自由调整演示容器大小*/
/*=======Flex=======*/
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
}
.item {
width: 100px;
height: 100px;
margin: 5px;
text-align: center;
line-height: 100px;
border: 1px solid blue;
background-color: turquoise;
/*=======Flex=======*/
}
.item:nth-of-type(1) {
order: 5;
}
.item:nth-of-type(5) {
order: -1;
}
order: 数值
单独设置子元素的排列循序,按主轴方法计算大小,可为负数
.item:nth-of-type(1) {
flex-grow: 1;
}
flex-grow: 1
表示在父容器剩余空间充裕时,子元素将自动放大自身以填充剩余空间,默认为0
及不放大自身
.item:nth-of-type(1) {
flex-shrink: 0;
}
flex-shrink: 0
表示在父容器剩余空间不足时,子元素将不会缩小自身大小以适应空间,默认为0
及自动缩小自身
.item:nth-of-type(1) {
flex-basis: 200px;
}
flex-basis: 200px
表示项目默认初始大小为200px
,默认为auto
自动调整
.item:nth-of-type(1) {
flex: 0 1 auto;
}
flex: 0 1 auto
表示项目在分配多余空间时不会
相对增长,项目在空间不足时会
相对收缩(默认值)
.item:nth-of-type(1) {
flex: auto;
}
flex: auto
表示项目会在分配多余空间时会
相对增长,空间不足时会
相对收缩
.item:nth-of-type(1) {
flex: none;
}
flex: none
表示项目在分配多余空间时不会
相对增长,项目在空间不足时不会
相对收缩
.item:nth-of-type(1) {
flex: 1;
}
flex: 1
表示项目会在分配多余空间时会
相对增长,空间不足时会
相对收缩
.item:nth-of-type(1) {
flex: 200px;
}
flex: 200px
表示项目在分配多余空间时会
相对增长,空间不足时会
相对收缩,默认大小200px
.item:nth-of-type(1) {
align-self: flex-start;
}
align-self: flex-start
设置单个子元素在侧轴上的对齐方式为顶对齐,会覆盖掉父容器的align-items
属性
.item:nth-of-type(1) {
align-self: flex-start;
}
align-self: center
设置单个子元素在侧轴上的对齐方式为居中对齐,会覆盖掉父容器的align-items
属性
.item:nth-of-type(1) {
align-self: flex-start;
}
align-self: flex-end
设置单个子元素在侧轴上的对齐方式为底对齐,会覆盖掉父容器的align-items
属性
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<style>
* {
margin: 0;
padding: 0;
}
#app {
margin: 0 auto;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
width: 100%;
height: 10%;
background-color: yellow;
display: flex;
flex-direction: row;
/*gap: 5px;*/
}
header .logo {
width: 100px;
height: 100px;
background-color: blue;
}
header nav {
width: 100px;
height: 100px;
background-color: blue;
}
header .user {
width: 100px;
height: 100px;
background-color: blue;
margin-left: auto;
}
section {
width: 100%;
height: 86%;
display: flex;
flex-direction: row;
overflow: hidden;
}
section aside {
width: 210px;
height: 100%;
background-color: red;
}
section main {
width: 100%;
height: 100%;
overflow: auto;
}
section main .container {
background-color: pink;
padding: 20px;
overflow: auto;
}
footer {
width: 100%;
height: 4%;
background-color: turquoise;
display: flex;
justify-content: center;
align-items: center;
}
style>
head>
<body>
<div id="app">
<header>
<div class="logo">div>
<nav>nav>
<div class="user">div>
header>
<section>
<aside>aside>
<main>
<div class="container">
<div style="width: 100px; height:1200px;background-color: rgba(153,153,153,0.8)">div>
div>
main>
section>
<footer>
<a href="https://www.xuanzishare.com/">Copyright © xuanzishare.com. All Rights Reserved.a>
footer>
div>
body>
html>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<style>
* {
margin: 0;
padding: 0;
}
#app {
margin: 0 auto;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
}
header, footer {
width: 100%;
height: 8%;
background-color: red;
}
section {
width: 100%;
height: 84%;
background-color: orange;
display: flex;
flex-direction: row;
}
section aside:first-child {
width: 10%;
height: 100%;
background-color: pink;
}
section main {
width: 80%;
height: 100%;
background-color: green;
}
section aside:last-child {
width: 10%;
height: 100%;
background-color: pink;
}
style>
<body>
<div id="app">
<header>header>
<section>
<aside>aside>
<main>main>
<aside>aside>
section>
<footer>footer>
div>
body>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<style>
* {
margin: 0;
padding: 0;
}
#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
header {
position: fixed;
width: 100%;
height: 50px;
background-color: red;
}
section {
width: 80%;
height: 1800px;
background-color: orange;
}
footer {
width: 100%;
height: 50px;
background-color: red;
}
style>
<body>
<div id="app">
<header>header>
<section>section>
<footer>footer>
div>
body>
玄子Share-CSS3 弹性布局知识手册 23.11.30