1234567891011121314151617181920212223242526272829303132333435 |
- <!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{
- border:1px solid black;
- /* border-width: 1px;
- border-style: solid;
- border-color: black; */
- width: 300px;
- height: 300px;
- }
- .box2,.box3{
- width: 100px;
- height: 100px;
- }
- .box2{
- background-color: red;
- }
- .box3{
- background-color: blue;
- }
- </style>
- </head>
- <body>
- <div class="box1">
- <div class="box2"></div>
- <div class="box3"></div>
- <span>hello</span>
- </div>
- </body>
- </html>
|