1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box {
- width: 1600px;
- height: 880px;
- display: flex;
- flex-direction: column;
- border:3px solid #000;
- }
- #header {
- width: 100%;
- height: 100px;
- background: #f00;
- }
- #main {
- width: 100%;
- flex: 1;
- background: plum;
- display: flex;
- }
- #main .left {
- flex: 1;
- /* width: 280px; */
- height: 100%;
- background: #ff0;
- }
- #main .right {
- flex: 8;
- height: 100%;
- background: hotpink;
- margin-left: 20px;
- }
- #footer {
- width: 100%;
- height: 180px;
- background: #ccc;
- }
- </style>
- </head>
- <body>
- <div id="box">
- <div id="header"></div>
- <div id="main">
- <div class="left">
- </div>
- <div class="right">
- </div>
- </div>
- <div id="footer"></div>
- </div>
- </body>
- </html>
|