1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!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: 1200px;
- height: 888px;
- border:3px solid #000;
- display: flex;
- }
- #box .left {
- width: 200px;
- height: 100%;
- background: #f00;
- }
- #box .right {
- flex: 1;
- height: 100%;
- background: #ff0;
- margin-left: 30px;
- display: flex;
- flex-direction: column;
- }
- .right .header {
- width: 100%;
- height: 120px;
- background: #0f0;
- }
- .right .mid {
- width: 100%;
- flex: 1;
- background: palevioletred;
- }
- .right .bottom {
- width: 100%;
- height: 180px;
- background: rgb(22, 150, 186);
- }
-
- </style>
- </head>
- <body>
- <div id="box">
- <div class="left">
- </div>
- <div class="right">
- <div class="header">
- </div>
- <div class="mid">
- </div>
- <div class="bottom">
-
- </div>
- </div>
- </div>
- </body>
- </html>
|