123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
-
-
-
- .HolyGrail {
- display: flex;
-
- flex-direction: column;
- height: 800px;
- }
- header,
- footer {
- background-color: #0a6aa1;
- flex: 1;
-
- }
- .HolyGrail-body {
- display: flex;
- flex: 5;
-
- background-color: #FFB5BF;
- align-items: flex-end;
- align-content: flex-start;
- }
- .HolyGrail-content {
- height: 500px;
- flex: 1;
- background-color: #0D3349;
- }
- .HolyGrail-nav, .HolyGrail-ads {
-
- flex: 0 0 12em;
- background-color: red;
- height: 500px;
- }
- .HolyGrail-nav {
-
- order: -1;
- background-color: darkblue;
- }
- </style>
- </head>
- <body class="HolyGrail">
- <header></header>
- <div class="HolyGrail-body">
- <main class="HolyGrail-content">...</main>
- <nav class="HolyGrail-nav">...</nav>
- <aside class="HolyGrail-ads">...</aside>
- </div>
- <footer></footer>
- </body>
- </html>
|