index2.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. html, body {
  7. width: 100%;
  8. height: 100%;
  9. margin: 0;
  10. padding: 0;
  11. overflow: hidden;
  12. }
  13. .container {
  14. width: 100%;
  15. height: 100%;
  16. background-color: #ff0000;
  17. display: grid;
  18. grid-template-columns: 100%;
  19. grid-template-rows: 50px auto 50px;
  20. }
  21. .header {
  22. grid-column: 1;
  23. grid-row: 1;
  24. background-color: #00ff00;
  25. }
  26. .main {
  27. grid-column: 1;
  28. grid-row: 2;
  29. background-color: #0000ff;
  30. min-height: 0;
  31. min-width: 0;
  32. }
  33. .main-content {
  34. width: 100%;
  35. height: 800px;
  36. padding: 20px;
  37. background-color: #000000;
  38. }
  39. .footer {
  40. grid-column: 1;
  41. grid-row: 3;
  42. background-color: #ffff00;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div class="container">
  48. <div class="header">Header</div>
  49. <div class="main">
  50. <div class="main-content">
  51. </div>
  52. </div>
  53. <div class="footer">Footer</div>
  54. </div>
  55. </body>
  56. </html>