Blogger Information
Blog 35
fans 0
comment 0
visits 16751
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
flex容器初试
手机用户311660634
Original
290 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="rouqi">
  11. <div class="test">test1</div>
  12. <div class="test">test2</div>
  13. <div class="test">test3</div>
  14. </div>
  15. <style>
  16. .rouqi{
  17. width: 450px;
  18. height: 50px;
  19. display: flex;
  20. /* 行内块,禁止换行 */
  21. flex-flow: row nowrap;
  22. /* 主轴靠左边 */
  23. place-content: start;
  24. place-items: stretch;
  25. background-color: red;
  26. place-content: start;
  27. place-content: center;
  28. place-content: space-around;
  29. border: 3px solid black;
  30. }
  31. .rouqi > .test {
  32. background-color: yellow;
  33. border: 1px solid black;
  34. flex:0 1 auto;
  35. }
  36. .rouqi .test:first-of-type {
  37. background-color: blue;
  38. flex:1;
  39. }
  40. .rouqi .test:last-of-type {
  41. background-color: blue;
  42. flex:1;
  43. }
  44. .rouqi .test:first-of-type + * {
  45. background-color: olivedrab;
  46. flex:3;
  47. }
  48. </style>
  49. </body>
  50. </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