flex-01.html 958 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. .container {
  8. width: 800px;
  9. height: 500px;
  10. margin: 0 auto;
  11. display: flex;
  12. background-color: #0e9aef;
  13. }
  14. .one {
  15. background-color: goldenrod;
  16. height: 200px;
  17. width: 200px;
  18. }
  19. .two {
  20. background-color: grey;
  21. height: 200px;
  22. /*flex-basis: 100px;*/
  23. width: 100px;
  24. flex-grow: 1;
  25. }
  26. .three {
  27. background-color: antiquewhite;
  28. height: 200px;
  29. /*flex-basis: 100px;*/
  30. width: 200px;
  31. flex-grow: 1;
  32. /*writing-mode: ;*/
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="container">
  38. <div class="one"></div>
  39. <div class="two"></div>
  40. <div class="three"></div>
  41. </div>
  42. </body>
  43. </html>