Blogger Information
Blog 56
fans 0
comment 4
visits 37841
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
flex布局,术语和项目
异乡客
Original
489 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>flex布局,术语和项目</title>
  8. </head>
  9. <body>
  10. <div class="container">
  11. <div class="item">item1</div>
  12. <div class="item">item2</div>
  13. <div class="item">item3</div>
  14. </div>
  15. <style>
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: 0;
  20. }
  21. .container {
  22. /* flex容器 */
  23. display: flex;
  24. height: 20em;
  25. border: 5px solid #000;
  26. flex-direction: row;
  27. /* flex-direction: column; 主轴选择, */
  28. /* flex-wrap: wrap; 换行控制 */
  29. place-content: end;
  30. }
  31. .container>.item {
  32. width: 10em;
  33. padding: 1em;
  34. border: 2px solid red;
  35. background-color: lightgreen;
  36. }
  37. </style>
  38. </body>
  39. </html>
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