123456789101112131415161718192021222324252627282930313233343536 |
- <!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{
- height: 500px;
- display: flex;
- }
- .div1{
- width: 300px;
- height: 100%;
- background-color: red;
- }
- .div2{
- height: 100%;
- /* flex: 1; */
- flex-grow: 1;
- background-color: blue;
- }
-
- </style>
- </head>
- <body>
- <div class="box">
- <div class="div1"></div>
- <div class="div2"></div>
- </div>
- </body>
- </html>
|