2.html 906 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. .container {
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .row {
  14. display: flex;
  15. }
  16. .row:nth-child(1) {
  17. justify-content: flex-start;
  18. }
  19. .row:nth-child(2) {
  20. justify-content: center;
  21. }
  22. .row:nth-child(3) {
  23. justify-content: flex-end;
  24. }
  25. .box {
  26. width: 50px;
  27. height: 50px;
  28. background-color: #ccc;
  29. margin: 5px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container">
  35. <div class="row">
  36. <div class="box"></div>
  37. </div>
  38. <div class="row">
  39. <div class="box"></div>
  40. </div>
  41. <div class="row">
  42. <div class="box"></div>
  43. </div>
  44. </div>
  45. </body>
  46. </html>