8.上中下布局.html 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. #box {
  9. width: 100%;
  10. height: 900px;
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. #header {
  15. width: 100%;
  16. height: 100px;
  17. background: #00f;
  18. }
  19. #main {
  20. width: 100%;
  21. flex: 8;
  22. /* height: 100px; */
  23. background: #ff0;
  24. }
  25. #footer {
  26. width: 100%;
  27. flex: 1;
  28. background: #0ff;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="box">
  34. <div id="header">
  35. </div>
  36. <div id="main">
  37. </div>
  38. <div id="footer">
  39. </div>
  40. </div>
  41. </body>
  42. </html>