博客列表 >演示flex容器各个参数含义

演示flex容器各个参数含义

手机用户1580651468
手机用户1580651468原创
2022年10月28日 16:15:47292浏览

演示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常用术语如下图

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