1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> body{ margin: 0px; } .HolyGrail { display: flex; min-height: 100vh; flex-direction: column; }
header, footer { flex: 1; }
.HolyGrail-body { display: flex; flex: 1; }
.HolyGrail-content { flex: 1; }
.HolyGrail-nav, .HolyGrail-ads { flex: 0 0 5em; }
.HolyGrail-nav { order: -1; } </style> </head> <body> <body class="HolyGrail"> <header style="background-color: #2D82FF">...</header> <div class="HolyGrail-body"> <main class="HolyGrail-content" style="background-color: #6DDA79">...</main> <nav class="HolyGrail-nav" style="background-color: yellow">...</nav> <aside class="HolyGrail-ads" style="background-color: rebeccapurple">...</aside> </div> <footer style="background-color: #2D82FF">...</footer> </body> </body> </html>
|