123456789101112131415161718192021222324252627282930313233343536 |
- <!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{
- width: 400px;
- height: 400px;
- border:3px solid black;
- position: relative;
- }
- .box1,.box2{
- width: 100px;
- height: 100px;
- position: absolute;
- top:0;
- left: 0;
- }
- .box1{
- background-color: red;
- z-index: 1;
- }
- .box2{
- background-color: blue;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="box1"></div>
- <div class="box2"></div>
- </div>
- </body>
- </html>
|