Blogger Information
Blog 19
fans 0
comment 1
visits 7444
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1026作业
移动用户-4050479
Original
352 people have browsed it
  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>Document</title>
  8. <style>
  9. .css {
  10. display: flex ;
  11. width: 150px;
  12. height: 70px;
  13. background-color: bisque;
  14. flex-flow: row wrap;
  15. place-content: space-between;
  16. place-items: stretch; /* 俩端对齐 */
  17. place-content: space-around; /* 分散对齐 */
  18. place-content: space-evenly; /* 平均对齐 */
  19. }
  20. .css .vb {
  21. background-color: aquamarine;
  22. border: 0.125rem solid violet;
  23. flex: 0 1 auto;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="css">
  29. <div class="vb">EVE1</div>
  30. <div class="vb">EVE2</div>
  31. <div class="vb">EVE3</div>
  32. <div class="vb">EVE4</div>
  33. <div class="vb">EVE5</div>
  34. </div>
  35. </body>
  36. </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