123456789101112131415161718192021222324252627282930313233 |
- <!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: 100px;
- height: 100px;
- background-color:red;
- /* position: absolute;
- top:0;
- left: 0;
- z-index: 1; */
- z-index: 999;
- }
- .box2{
- width: 100px;
- height: 100px;
- background-color: blue;
- position: absolute;
- top:0;
- left: 0;
- z-index: 2;
- }
- </style>
- </head>
- <body>
- <div class="box1"></div>
- <div class="box2"></div>
- </body>
- </html>
|