Advertisement
irmantas_radavicius

Untitled

Jan 16th, 2022
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100%;
  7. }
  8.  
  9. div.table {
  10. display: table;
  11. }
  12. div.table > div {
  13. display: table-row;
  14. }
  15. div.table > div > div {
  16. display: table-cell;
  17. }
  18.  
  19. div#header {
  20. background-color: blue;
  21. }
  22. div#mid {
  23. background-color: red;
  24. }
  25. div#footer {
  26. background-color: blue;
  27. }
  28. div#menu {
  29. width: 30%;
  30. }
  31. div#content {
  32. width: 70%;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div id="page" class="table">
  38. <div id="header">
  39. <div>Header</div>
  40. </div>
  41. <div>
  42. <div id="mid">
  43. <div class="table">
  44. <div>
  45. <div id="menu">HMenu</div>
  46. <div id="content">Content</div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. <div id="footer">
  52. <div>Footer</div>
  53. </div>
  54. </div>
  55.  
  56.  
  57.  
  58. </body>
  59. </html>
  60.  
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement