123456789101112131415161718192021222324252627282930 |
- <!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;
- }
- .div1{
- width: 300px;
- height: 500px;
- background-color: red;
- float: left;
- }
- .div2{
- width: calc(100% - 300px);
- height: 500px;
- background-color: blue;
- float: left;
- }
- </style>
- </head>
- <body>
- <div class="div1"></div>
- <div class="div2"></div>
- </body>
- </html>
|