博客列表 >HTML FlexBox弹性盒布局知识

HTML FlexBox弹性盒布局知识

写代码的张先森
写代码的张先森原创
2020年06月23日 17:26:531523浏览

HTML FlexBox弹性盒布局知识讲解


首先我们想一下,为什么会有flex弹性布局?原因其实很简单,实现同样的一个页面布局,用原始的html+css布局技术可能要写100行代码去实现,在效率和时间上都是浪费,随着技术的不断进步,所以有了flex弹性布局,它可能需要10行代码就可以布局完成

1.讲到这里我们接下来先看两个例子,用html+css的定位和浮动分别写个例子

用浮动做布局示例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>基于html+css浮动的二列布局</title>
  7. <style>
  8. * {
  9. /* 初始化 */
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. aside,
  15. main {
  16. /* 设定侧边栏和主体的背景颜色和最小高度 */
  17. background-color: #dedede;
  18. min-height: 700px;
  19. }
  20. header,
  21. footer {
  22. /* 设定页眉页脚的背景颜色和高度 */
  23. background-color: cadetblue;
  24. height: 50px;
  25. }
  26. .wrap {
  27. /* 给侧边栏和主体的父元素添加宽高 边框 */
  28. width: 1000px;
  29. border: 1px solid #000;
  30. /* 添加溢出隐藏 防止父元素高度塌陷 */
  31. overflow: hidden;
  32. margin: 10px auto;
  33. }
  34. aside {
  35. /* 侧边栏左浮动 */
  36. width: 200px;
  37. float: left;
  38. }
  39. main {
  40. /* 主体部分右浮动 */
  41. width: 790px;
  42. float: right;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <header>页眉</header>
  48. <div class="wrap">
  49. <aside>侧边栏</aside>
  50. <main>主体内容区</main>
  51. </div>
  52. <footer>页脚</footer>
  53. </body>
  54. </html>

效果:

用定位做布局示例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>基于html+css定位的二列布局</title>
  7. <style>
  8. * {
  9. /* 初始化 */
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. aside,
  15. main {
  16. background-color: #dedede;
  17. min-height: 700px;
  18. }
  19. header,
  20. footer {
  21. background-color: cadetblue;
  22. height: 50px;
  23. }
  24. .wrap {
  25. width: 1000px;
  26. border: 1px solid #000;
  27. min-height: 700px;
  28. margin: 10px auto;
  29. /* 定位父级 :给侧边栏和主体部分的父级定位*/
  30. position: relative;
  31. }
  32. aside {
  33. width: 200px;
  34. /* 设定最小高度为父元素的高度 */
  35. min-height: inherit;
  36. /* 绝对定位 */
  37. position: absolute;
  38. }
  39. main {
  40. width: 790px;
  41. /* 设定最小高度为父元素的高度 */
  42. min-height: inherit;
  43. /* 绝对定位 */
  44. position: absolute;
  45. /* 主体靠右 所以right=0 top=0 简写一下 */
  46. right: 0;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <header>页眉</header>
  52. <div class="wrap">
  53. <aside>侧边栏</aside>
  54. <main>主体内容区</main>
  55. </div>
  56. <footer>页脚</footer>
  57. </body>
  58. </html>

效果:

附例:内容的多栏显示做法
代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>内容的多栏/列显示</title>
  7. <style>
  8. /* 初始化 */
  9. * {
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. /* 表示HTML */
  15. :root {
  16. font-size: 16px;
  17. color: #555;
  18. }
  19. div {
  20. border: 1px solid #000;
  21. padding: 1rem;
  22. /* 宽度显示60个字 */
  23. width: 60rem;
  24. margin: 30px auto;
  25. }
  26. div {
  27. /* 分列显示 例分3列显示*/
  28. column-count: 3;
  29. /* 设置分割线 */
  30. /* column-rule-style: solid;
  31. /* 设置分割线宽度 */
  32. /* column-rule-width: 1px; */
  33. /* 设置分割线颜色 */
  34. /* column-rule-color: red; */
  35. /* 以上三种的简写方式 类似边框写法 */
  36. column-rule: 1px solid red;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div>
  42. 新华社北京6月22日电
  43. 中国-阿拉伯国家政党对话会特别会议22日以视频会议方式召开。中共中央总书记、国家主席习近平向会议致贺信。
  44. 习近平表示,值此中国-阿拉伯国家政党对话会特别会议开幕之际,我代表中国共产党,并以我个人的名义,向会议的召开表示热烈的祝贺,向出席会议的阿拉伯国家政党领导人表示诚挚的问候。
  45. 习近平指出,中阿友谊源远流长,历久弥新。中阿两大民族在古丝绸之路上出入相友,在共建“一带一路”中携手相伴,共同致力于实现国家富强、民族复兴梦想。面对突如其来的新冠肺炎疫情,中阿守望相助、共克时艰,谱写了共建中阿命运共同体的新篇章。患难见真情。经过携手抗疫的洗礼,中阿战略伙伴关系基础更加牢固,人民友谊更加深厚,合作前景更加光明。
  46. 习近平强调,此次疫情再次表明,人类是休戚与共的命运共同体。中国共产党和中国政府始终坚持人民至上、生命至上,全力以赴救治生命,疫情防控取得重大战略成果;始终本着公开、透明、负责任态度,积极参与和推动国际抗疫合作,始终力所能及支持和帮助国际社会抗疫斗争。中方愿同包括广大阿拉伯国家在内的国际社会加强团结合作,支持世界卫生组织发挥领导作用,共同推动构建人类卫生健康共同体。
  47. 习近平表示,中阿政党对话会是中国共产党与阿拉伯国家政党交流合作的重要平台。面对疫情带来的新形势新挑战,中国共产党愿同阿拉伯各国政党一道,发挥好中阿政党对话会的平台作用,继续加强战略沟通,深化疫情防控常态化形势下治国理政经验交流,相互尊重,互学互鉴,为构建新时代中阿命运共同体、实现中阿两大民族伟大复兴而不懈努力。预祝会议取得圆满成功。
  48. 中国-阿拉伯国家政党对话会特别会议由中共中央对外联络部主办。会议为期3天,主题为“携手共建新时代中阿命运共同体”。毛里塔尼亚总统加祖瓦尼,巴勒斯坦法塔赫主席、总统阿巴斯,叙利亚复兴党总书记、总统巴沙尔,摩洛哥公正与发展党总书记、首相奥斯曼尼等6位阿拉伯国家领导人向会议致辞,阿拉伯国家60余位主要政党领导人参加。阿方领导人表示,完全赞同习近平总书记对阿中战略伙伴关系的积极评价;高度赞赏中国党和政府在抗疫斗争中始终坚持“人民至上”的执政理念,并秉持人类命运共同体理念,积极参与和推动国际抗疫合作;感谢中方一贯支持阿拉伯国家捍卫主权和独立,认为香港、新疆等事务是中国内政,反对外部势力干涉中国内政;愿同中国共产党一道,加强战略沟通和理念互鉴,携手共建新时代阿中命运共同体。
  49. </div>
  50. </body>
  51. </html>

效果:

这个案例适用于内容的分列多栏显示,并不适用于布局,因为用作布局的话会有很多问题,这里我们就简单讲一下,有了解就可以

以上两个小示例我们可以看到都可以实现布局,但是代码可能就比较多了,这只是简单的写一下,复杂的布局用原始的html+css定位和浮动技术可能就有点太low了,好,那我们接下来就慢慢的学习一下flex弹性布局的知识吧!

注:在学习弹性布局的时候我们建议用火狐浏览器查看demo,火狐浏览器更直观的感受弹性布局

1.FlexBox弹性盒布局快速预览
知识点1:将容器转为弹性容器 display: flex;
知识点2:自动计算每个弹性项目在弹性容器中的平均宽度 flex: auto;
知识点3:我们也可以给每个弹性项目设置不同的宽高
知识点4:一旦将父元素转为弹性容器,内部的“子元素”就会自动成为: 弹性项目,这些项目之前不管什么标签,通通转为行内块 就是在“主轴”上排列

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>FlexBox弹性盒布局快速预览</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. /* 如果这个容器中的内容要使用flexBox布局, 第一步就是必须将这个容器转为弹性盒子 */
  11. /* 弹性容器 */
  12. display: flex;
  13. }
  14. .container > .item {
  15. /* 一旦将父元素转为弹性容器,内部的“子元素”就会自动成为: 弹性项目 */
  16. /* 不管这个项目标签之前是什么类型,统统转为“行内块” */
  17. /* 行内:全部在一排显示 */
  18. /* 块: 可以设置宽和高 */
  19. /* 自动计算每个弹性项目在弹性容器中的平均宽度 */
  20. flex: auto;
  21. /* 我们也可以给弹性项目设置宽高 */
  22. /* width: 60px; */
  23. /* height: 60px; */
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="container">
  29. <div class="item">1</div>
  30. <span class="item">2</span>
  31. <a class="item">3</a>
  32. <a class="item">4</a>
  33. <a class="item">5</a>
  34. <a class="item">6</a>
  35. </div>
  36. </body>
  37. </html>

效果:

2.FlexBox弹性盒多行容器
知识点1:将容器转为多行容器 flex-wrap: wrap;
知识点2:当在一行上的弹性项目排列超出弹性容器的宽度会换行显示

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>FlexBox弹性盒多行容器</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. /* 弹性容器 */
  11. display: flex;
  12. }
  13. .container > .item {
  14. width: 60px;
  15. width: 50px;
  16. width: 120px;
  17. }
  18. /* 转为多行容器 换行显示 */
  19. .container {
  20. flex-wrap: wrap;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <div class="item">1</div>
  27. <div class="item">2</div>
  28. <div class="item">3</div>
  29. <div class="item">4</div>
  30. <div class="item">5</div>
  31. </div>
  32. </body>
  33. </html>

效果:

3.单行容器中的项目对齐方式
知识点1:理解项目两边和项目之间不同的对齐方式

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>单行容器中的项目对齐方式</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. display: flex;
  11. /* justify-content: 控制所有项目在主轴上的对齐方式; */
  12. /* 本质是:设置容器中的剩余空间在所有 “项目之间”的分配方案 */
  13. /* 1. 容器剩余空间在所有项目“二边”的如何分配 ,将全部项目视为一个整体*/
  14. /* 将剩余空间分配到结尾*/
  15. justify-content: flex-start;
  16. /* 将剩余空间分配给开头 */
  17. /* justify-content: flex-end; */
  18. /* 将剩余空间给两端平均分配 */
  19. /* justify-content: center; */
  20. /* 2. 容器剩余空间在所有项目“之间”的如何分配 ,将项目视为一个个独立的个体*/
  21. /* 在所有项目之间平均分配 */
  22. /* justify-content: space-between; */
  23. /* 分散对齐: 剩余空间在所有项目二侧平均分配 */
  24. /* justify-content: space-around; */
  25. /* justify-content: space-evenly; */
  26. }
  27. .container > .item {
  28. width: 60px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="container">
  34. <div class="item">1</div>
  35. <div class="item">2</div>
  36. <div class="item">3</div>
  37. </div>
  38. </body>
  39. </html>

效果:

4.多行容器中的项目对齐方式
代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>多行容器中的项目对齐方式</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. display: flex;
  11. /* 多行容器 */
  12. flex-wrap: wrap;
  13. height: 150px;
  14. /* align-content: 设置多行容器中的项目排列; */
  15. /* 1. 容器剩余空间在所有项目“二边”的如何分配 ,将全部项目视为一个整体*/
  16. align-content: stretch;
  17. align-content: flex-start;
  18. align-content: flex-end;
  19. align-content: center;
  20. /* 2. 容器剩余空间在所有项目“之间”的如何分配 ,将项目视为一个个独立的个体*/
  21. align-content: space-between;
  22. align-content: space-around;
  23. align-content: space-evenly;
  24. }
  25. .container > .item {
  26. width: 60px;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="container">
  32. <div class="item">1</div>
  33. <div class="item">2</div>
  34. <div class="item">3</div>
  35. <div class="item">4</div>
  36. <div class="item">5</div>
  37. <div class="item">6</div>
  38. <div class="item">7</div>
  39. <div class="item">8</div>
  40. </div>
  41. </body>
  42. </html>

效果:

5.主轴为垂直方向时的项目排列
知识点:改变主轴的排列方向 为垂直排列 flex-direction: column;

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>主轴为垂直方向时的项目排列</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 150px;
  11. display: flex;
  12. /* 主轴方向:默认为行 */
  13. flex-direction: row;
  14. /* 改变主轴的排列方向 为垂直 */
  15. flex-direction: column;
  16. /* 项目二边分配 */
  17. justify-content: flex-start;
  18. justify-content: flex-end;
  19. justify-content: center;
  20. /* 项目之间分配 */
  21. justify-content: space-between;
  22. justify-content: space-around;
  23. justify-content: space-evenly;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="container">
  29. <div class="item">1</div>
  30. <div class="item">2</div>
  31. <div class="item">3</div>
  32. </div>
  33. </body>
  34. </html>

效果:

6.项目在交叉轴上的排列
知识点:项目在交叉轴上默认是自动伸缩的
代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>项目在交叉轴上的排列</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 200px;
  11. display: flex;
  12. /* 项目在交叉轴上默认是自动伸缩的 */
  13. align-items: stretch;
  14. align-items: flex-start;
  15. align-items: flex-end;
  16. align-items: center;
  17. }
  18. .container > .item {
  19. width: 60px;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="container">
  25. <div class="item">1</div>
  26. <div class="item">2</div>
  27. <div class="item">3</div>
  28. </div>
  29. </body>
  30. </html>

效果:

7.flex容器属性实战: 快速撸一个主导航
代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>flex容器属性实战: 快速撸一个主导航</title>
  7. <style>
  8. /* 初始化 */
  9. * {
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. a {
  15. text-decoration: none;
  16. color: #ccc;
  17. }
  18. nav {
  19. height: 40px;
  20. background-color: #333;
  21. padding: 0 50px;
  22. /* 转为弹性盒布局 */
  23. display: flex;
  24. }
  25. nav a {
  26. height: inherit;
  27. line-height: 40px;
  28. padding: 0 15px;
  29. }
  30. nav a:hover {
  31. background-color: lightpink;
  32. color: white;
  33. }
  34. /* 登录/注册放在最右边 */
  35. nav a:last-of-type {
  36. margin-left: auto;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <header>
  42. <nav>
  43. <a href="">首页</a>
  44. <a href="">京东物流</a>
  45. <a href="">购物问答</a>
  46. <a href="">调研问卷</a>
  47. <a href="">登录/注册</a>
  48. </nav>
  49. </header>
  50. </body>
  51. </html>

效果:

怎么样感觉,是不是简单的几行代码就实现了这么炫酷的效果,这就是flex弹性布局的优点

8.项目属性: order控制项目顺序
知识点:order 默认是0 数值越大越靠后

示例代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>项目属性: order控制项目顺序</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. display: flex;
  11. }
  12. .container > .item {
  13. width: 60px;
  14. }
  15. .container > .item:first-of-type {
  16. /* order: 默认是0 */
  17. order: 3;
  18. }
  19. .container > .item:last-of-type {
  20. /* order: 默认是0 */
  21. order: 5;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="container">
  27. <div class="item">1</div>
  28. <div class="item">2</div>
  29. <div class="item">3</div>
  30. </div>
  31. </body>
  32. </html>

效果:

9.order小案例,调整元素顺序,比如小相册
注:这个有js代码控制 大体意思就是 点击当前图片的上下按钮可以根据order属性去改变当前图片在这些图片中的位置

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>order小案例,调整元素顺序,比如小相册</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .container > .item {
  14. border: 1px solid #000;
  15. padding: 10px;
  16. display: flex;
  17. position: relative;
  18. }
  19. .container > .item > div {
  20. display: flex;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <div class="item">
  27. images-1.jpg
  28. <div>
  29. <button onclick="up(this)"></button
  30. ><button onclick="down(this)"></button>
  31. </div>
  32. </div>
  33. <div class="item">
  34. images-2.jpg
  35. <div>
  36. <button onclick="up(this)"></button
  37. ><button onclick="down(this)"></button>
  38. </div>
  39. </div>
  40. <div class="item">
  41. images-3.jpg
  42. <div>
  43. <button onclick="up(this)"></button
  44. ><button onclick="down(this)"></button>
  45. </div>
  46. </div>
  47. </div>
  48. <script>
  49. let up = (ele) => (ele.offsetParent.style.order -= 1);
  50. let down = (ele) => (ele.offsetParent.style.order += 1);
  51. </script>
  52. </body>
  53. </html>

效果:

小结:

1.理解学到的弹性容器属性:flex-wrap justify-content align-items align-content flex-direction
2.理解学到的弹性项目属性:order
3.把这些属性结合到实例中自己动手试试,收获会很大
4.还有一部分项目属性,后面我们会更新

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议