123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box1{
- border: 10px red solid;
- }
- .box2{
- width: 100px;
- height: 100px;
- background-color: #bfa;
- float: left;
- }
- .box3{
- clear: both;
- }
- .box1::after{
- content: '';
- display: block;
- clear: both;
- }
- </style>
- </head>
- <body>
- <div class="box1">
- <div class="box2"></div>
- <!-- <div class="box3"></div> -->
- </div>
- </body>
- </html>
|