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