Advertisement
irmantas_radavicius

Untitled

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