博客列表 >10.26作业

10.26作业

子墨吖ฅฅ
子墨吖ฅฅ原创
2022年10月26日 22:11:19256浏览
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. </head>
  10. <style>
  11. .box1{
  12. background-color: red;
  13. flex: 1;
  14. /*占比1倍*/
  15. }
  16. .box2{
  17. background-color: yellow;
  18. flex: 3;
  19. /*占比3倍*/
  20. }
  21. .box3{
  22. background-color: green;
  23. flex: 1;
  24. /*占比1倍*/
  25. }
  26. .container{
  27. /*弹性盒模型*/
  28. display: flex;
  29. /*两边对齐中间留有空白*/
  30. /*place-content: space-between;*/
  31. /* 分散对齐 */
  32. /*place-content: space-around;*/
  33. /*平均对齐*/
  34. /*place-content: space-evenly;*/
  35. }
  36. </style>
  37. <body>
  38. <div class="container">
  39. <div class="box1">box1</div>
  40. <div class="box2">box2</div>
  41. <div class="box3">box3</div>
  42. </div>
  43. </body>
  44. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议