28_定位层级.html 733 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box1{
  9. width: 100px;
  10. height: 100px;
  11. background-color:red;
  12. /* position: absolute;
  13. top:0;
  14. left: 0;
  15. z-index: 1; */
  16. z-index: 999;
  17. }
  18. .box2{
  19. width: 100px;
  20. height: 100px;
  21. background-color: blue;
  22. position: absolute;
  23. top:0;
  24. left: 0;
  25. z-index: 2;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box1"></div>
  31. <div class="box2"></div>
  32. </body>
  33. </html>