Blogger Information
Blog 50
fans 0
comment 0
visits 31439
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
演示flex容器各个参数含义
手机用户1580651468
Original
293 people have browsed it

演示flex容器各个参数含义

一、实例演示flex容器与项目常用属性:

  1. 本次通过代码和图片展示

一)flex详细代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>flex布局</title>
  8. </head>
  9. <body>
  10. <!-- 1、flex常用术语:1容器2项目 3主轴4交叉轴
  11. 容器属性 项目属性 -->
  12. <div class="container">
  13. <div class="item">item1</div>
  14. <div class="item">item2</div>
  15. <div class="item">item3</div>
  16. </div>
  17. <style>
  18. .container{
  19. width: 450px;
  20. height: 50px;
  21. display: flex;
  22. /* flex-direction: row;
  23. flex-wrap: nowrap;
  24. justify-content: start;
  25. align-items: stretch;
  26. align-content: start; */
  27. flex-flow: row nowrap;
  28. place-content: start;
  29. place-content: space-around;
  30. place-content: space-evenly;
  31. place-items: stretch;
  32. place-items: center;
  33. }
  34. .container > .item{
  35. background-color: aquamarine;
  36. flex: 0 1 auto;
  37. flex: initial;
  38. /* 完全响应 */
  39. flex: auto;
  40. /* 完全不响应 */
  41. flex: 0 0 auto;
  42. }
  43. .container .item:first-of-type,
  44. .container.item:last-of-type{
  45. flex: 1;
  46. background-color: yellowgreen;
  47. }
  48. .container .item:first-of-type+*{
  49. background-color: rebeccapurple;
  50. flex: 3;
  51. place-self: end;
  52. }
  53. /* 第一个 */
  54. .container .item:first-of-type{
  55. order: 0;
  56. background-color: blueviolet;
  57. }
  58. .container .item:first-of-type+*{
  59. order: 0;
  60. background-color: aqua;
  61. }
  62. .container .item:last-of-type{
  63. order: 0;
  64. background-color: lightgreen;
  65. }
  66. </style>
  67. </body>
  68. </html>

二,运行的效果图:



二、flex常用术语如下图

Correcting teacher:PHPzPHPz

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