| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!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: 100%;
- height: 900px;
- display: flex;
- flex-direction: column;
- }
- #header {
- width: 100%;
- height: 100px;
- background: #00f;
- }
- #main {
- width: 100%;
- flex: 8;
- /* height: 100px; */
- background: #ff0;
- display: flex;
- }
- #sideBar {
- width: 200px;
- height: 100%;
- background: red;
- }
- #article {
- flex: 1;
- height: 100%;
- margin-left: 10px;
- background: purple;
- }
- #footer {
- width: 100%;
- flex: 1;
- background: #0ff;
- }
- </style>
- </head>
- <body>
- <div id="box">
- <div id="header">
-
- </div>
- <div id="main">
- <div id="sideBar"></div>
- <div id="article"></div>
- </div>
- <div id="footer">
-
- </div>
- </div>
- </body>
- </html>
|