1234567891011121314151617181920212223242526 |
- <!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>
- .box1 {
- width: 200px;
- height: 200px;
- background: #00f;
- float: left;
- }
- .box2 {
- height: 200px;
- background-color: #ff0;
- margin-left: 210px;
- }
- </style>
- </head>
- <body>
- <div class="box1"></div>
- <div class="box2"></div>
- </body>
- </html>
|