Blogger Information
Blog 28
fans 0
comment 0
visits 11637
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10.26作业
子墨吖ฅฅ
Original
255 people have browsed it
  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>
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
Author's latest blog post