博客列表 >flex容器初试

flex容器初试

手机用户311660634
手机用户311660634原创
2022年10月27日 15:17:27289浏览
  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. <div class="rouqi">
  11. <div class="test">test1</div>
  12. <div class="test">test2</div>
  13. <div class="test">test3</div>
  14. </div>
  15. <style>
  16. .rouqi{
  17. width: 450px;
  18. height: 50px;
  19. display: flex;
  20. /* 行内块,禁止换行 */
  21. flex-flow: row nowrap;
  22. /* 主轴靠左边 */
  23. place-content: start;
  24. place-items: stretch;
  25. background-color: red;
  26. place-content: start;
  27. place-content: center;
  28. place-content: space-around;
  29. border: 3px solid black;
  30. }
  31. .rouqi > .test {
  32. background-color: yellow;
  33. border: 1px solid black;
  34. flex:0 1 auto;
  35. }
  36. .rouqi .test:first-of-type {
  37. background-color: blue;
  38. flex:1;
  39. }
  40. .rouqi .test:last-of-type {
  41. background-color: blue;
  42. flex:1;
  43. }
  44. .rouqi .test:first-of-type + * {
  45. background-color: olivedrab;
  46. flex:3;
  47. }
  48. </style>
  49. </body>
  50. </html>

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