Blogger Information
Blog 22
fans 1
comment 0
visits 20324
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1223作业Flex布局之弹性容器可以设置的六类属性-第十期PHP线上培训班
Dseven
Original
1343 people have browsed it

1.当容器display为flex时,可设置的6种属性

1.1flex-direction

用来设置主轴方向

  1. /*!*flex-direction是用来设置主轴的方向*/
  2. /*row代表inline方向,column代表block方向。默认值为row*/
  3. .container-1{
  4. flex-direction: column;/*将主轴从inline方向调整为block方向*!*/
  5. }

1.2flex-wrap

容器内项目是否换行

  1. /*flex-wrap是用来设置项目是否换行*/
  2. /*nowrap是默认值代表不换行,wrap代表换行*/
  3. .container-2{
  4. flex-wrap: wrap;/*设置项目换行*/
  5. }

1.3flex-flow

设置方向和是否换行的合体简写版

  1. /*flex-flow是flex-direction和flex-wrap两个的简写方式*/
  2. /*flex-flow接受两个值,第一个值代表主轴方向,第二个值代表是否换行*/
  3. .container-3{
  4. flex-flow: column wrap;
  5. }

1.4justify-content

设置主轴方向上项目的空间排布

  1. /*justify-content用来设置在只有一条主轴的情况下项目的空间分布情况*/
  2. /*flex-start紧贴主轴起始点*/
  3. /*flex-end紧贴主轴结束点*/
  4. /*center居中*/
  5. /*space-between两端对齐*/
  6. /*space-around分散对齐,两端的空隙为中间空隙的一半*/
  7. /*space-evenly分散对齐,两端的空隙和中间一样*/
  8. .container-4{
  9. justify-content: space-evenly;
  10. }

1.5align-items

设置交叉轴上项目的空间排布

  1. /*align-items用来设置项目在交叉轴上的对齐方式*/
  2. /*flex-start紧贴交叉轴起始点*/
  3. /*flex-end紧贴交叉轴结束点*/
  4. /*center在交叉轴方向居中*/
  5. /*space-between在交叉轴方向两端对齐*/
  6. /*space-around在交叉轴方向分散对齐,两端的空隙为中间空隙的一半*/
  7. /*space-evenly在交叉轴方向分散对齐,两端的空隙和中间一样*/
  8. .container-5{
  9. align-items: flex-end;
  10. }

1.6align-content

设置项目换行后空间排布

  1. /*align-content用来设置有多条主轴时的空间排布*/
  2. .container-6{
  3. flex-wrap: wrap;
  4. align-content: space-around; /*每行元素离上下两边的距离为中间间隔的一半*/
  5. justify-content: space-between;
  6. }

2.代码演示

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Flex容器属性功能演示1223</title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. font-size: 20px;
  11. }
  12. /*初始化6个容器框*/
  13. body>div{
  14. display: flex;
  15. width: 500px;
  16. height: 500px;
  17. background-color: lightgreen;
  18. margin: 10px auto;
  19. }
  20. /*初始化容器框中的项目*/
  21. .item{
  22. width: 80px;
  23. height: 80px;
  24. background-color: lightcoral;
  25. border: 1px solid lightblue;
  26. box-sizing: border-box;
  27. }
  28. /*!*flex-direction是用来设置主轴的方向*/
  29. /*row代表inline方向,column代表block方向。默认值为row*/
  30. .container-1{
  31. flex-direction: column;/*将主轴从inline方向调整为block方向*!*/
  32. }
  33. /*flex-wrap是用来设置项目是否换行*/
  34. /*nowrap是默认值代表不换行,wrap代表换行*/
  35. .container-2{
  36. flex-wrap: wrap;/*设置项目换行*/
  37. }
  38. /*flex-flow是flex-direction和flex-wrap两个的简写方式*/
  39. /*flex-flow接受两个值,第一个值代表主轴方向,第二个值代表是否换行*/
  40. .container-3{
  41. flex-flow: column wrap;
  42. }
  43. /*justify-content用来设置在只有一条主轴的情况下项目的空间分布情况*/
  44. /*flex-start紧贴主轴起始点*/
  45. /*flex-end紧贴主轴结束点*/
  46. /*center居中*/
  47. /*space-between两端对齐*/
  48. /*space-around分散对齐,两端的空隙为中间空隙的一半*/
  49. /*space-evenly分散对齐,两端的空隙和中间一样*/
  50. .container-4{
  51. justify-content: space-evenly;
  52. }
  53. /*align-items用来设置项目在交叉轴上的对齐方式*/
  54. /*flex-start紧贴交叉轴起始点*/
  55. /*flex-end紧贴交叉轴结束点*/
  56. /*center在交叉轴方向居中*/
  57. /*space-between在交叉轴方向两端对齐*/
  58. /*space-around在交叉轴方向分散对齐,两端的空隙为中间空隙的一半*/
  59. /*space-evenly在交叉轴方向分散对齐,两端的空隙和中间一样*/
  60. .container-5{
  61. align-items: flex-end;
  62. }
  63. /*align-content用来设置有多条主轴时每行的空间排布*/
  64. .container-6{
  65. flex-wrap: wrap;
  66. align-content: space-around; /*每行元素离上下两边的距离为中间间隔的一半*/
  67. justify-content: space-between;
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <div class="container-1">
  73. <div class="item">1</div>
  74. <div class="item">2</div>
  75. <div class="item">3</div>
  76. <div class="item">4</div>
  77. <div class="item">5</div>
  78. <div class="item">6</div>
  79. <div class="item">7</div>
  80. </div>
  81. <hr>
  82. <div class="container-2">
  83. <div class="item">1</div>
  84. <div class="item">2</div>
  85. <div class="item">3</div>
  86. <div class="item">4</div>
  87. <div class="item">5</div>
  88. <div class="item">6</div>
  89. <div class="item">7</div>
  90. </div>
  91. <hr>
  92. <div class="container-3">
  93. <div class="item">1</div>
  94. <div class="item">2</div>
  95. <div class="item">3</div>
  96. <div class="item">4</div>
  97. <div class="item">5</div>
  98. <div class="item">6</div>
  99. <div class="item">7</div>
  100. </div>
  101. <hr>
  102. <div class="container-4">
  103. <div class="item">1</div>
  104. <div class="item">2</div>
  105. <div class="item">3</div>
  106. <!-- <div class="item">4</div>-->
  107. <!-- <div class="item">5</div>-->
  108. <!-- <div class="item">6</div>-->
  109. <!-- <div class="item">7</div>-->
  110. </div>
  111. <hr>
  112. <div class="container-5">
  113. <div class="item">1</div>
  114. <div class="item">2</div>
  115. <div class="item">3</div>
  116. <div class="item">4</div>
  117. <div class="item">5</div>
  118. <div class="item">6</div>
  119. <div class="item">7</div>
  120. </div>
  121. <hr>
  122. <div class="container-6">
  123. <div class="item">1</div>
  124. <div class="item">2</div>
  125. <div class="item">3</div>
  126. <div class="item">4</div>
  127. <div class="item">5</div>
  128. <div class="item">6</div>
  129. <div class="item">7</div>
  130. <div class="item">8</div>
  131. </div>
  132. </body>
  133. </html>

3.手写笔记

4.1220大作业小结

4.1用传统方式进行网页布局常用的方法有两种,一种是table布局,一种是float+position布局。table布局工作繁琐,后期调整难度大。float+position布局相较table来说更加的方便简洁。
4.2在完成作业的过程中耗时较长的地方就是元素选择和盒子边距的控制。
4.3需要重点注意的是在使用了border之后要加上box-sizing控制盒子尺寸。
4.4在使用float时要克制,尽可能少用。
4.5margin可以设置负值来调整元素位置。
4.6图片元素存在白边,需要将其转化为block。
4.7同一标签可以定义多个class 用空格隔开就行了,如果属性不重复则样式叠加,如果属性重复则以最后面的class为准。
4.8在绝对定位时可以利用四个点来设置垂直居中,即left:0;right:0;top:0;margin:auto ;

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:最后的总结部分, 有不少做了好久前端的同学都不一定能全明白, 你不简单
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post