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>
- .box{
- border:2px solid black;
- width: 400px;
- height: 100px;
- }
- .box1{
- height: 100px;
- background-color: red;
- width: 50%;
- float: left;
- }
- .box2{
- float: left;
- width: 50%;
- height: 100px;
- background-color: blue;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="box1"></div>
- <div class="box2"></div>
- </div>
- </body>
- </html>
|