1234567891011121314151617181920212223242526272829303132 |
- <!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,.box2{
- width: 400px;
- height: 400px;
- border:3px solid black;
- float: left;
- }
- .box3{
- width: 100px;
- height: 100px;
- background-color: red;
- }
- </style>
- </head>
- <body>
- <div class="box1">
- <span>hello</span>
- </div>
- <div class="box2">
- <div class="box3"></div>
- </div>
- <div class="box2">
- <div class="box3"></div>
- </div>
- </body>
- </html>
|