12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!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>
- * {
- margin: 0;
- padding: 0;
- }
- #box {
- display: flex;
- height: 800px;
- }
- #sideBar {
- width: 300px;
- height: 100%;
- background: #ff0;
- }
- #content {
- flex: 1;
- height: 100%;
- background: #f00;
- display: flex;
- flex-direction: column;
- }
- #content #header {
- height: 100px;
- width: 100%;
- background: #0f0;
- }
- #content #main {
- flex: 5;
- width: 100%;
- background: #f0f;
- }
- #content #footer {
- flex: 2;
- width: 100%;
- background: rgb(227, 151, 20);
- }
- </style>
- </head>
- <body>
- <div id="box">
- <div id="sideBar">sideBar</div>
- <div id="content">
- <div id="header">header</div>
- <div id="main">main</div>
- <div id="footer">footer</div>
- </div>
- </div>
- </body>
- </html>
|