24_定位.html 770 B

123456789101112131415161718192021222324252627282930313233343536
  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. .box{
  9. width: 400px;
  10. height: 400px;
  11. border:3px solid black;
  12. position: relative;
  13. }
  14. .box1,.box2{
  15. width: 100px;
  16. height: 100px;
  17. position: absolute;
  18. top:0;
  19. left: 0;
  20. }
  21. .box1{
  22. background-color: red;
  23. z-index: 1;
  24. }
  25. .box2{
  26. background-color: blue;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="box">
  32. <div class="box1"></div>
  33. <div class="box2"></div>
  34. </div>
  35. </body>
  36. </html>