26_定位.html 991 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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: 600px;
  10. height: 600px;
  11. border:3px solid black;
  12. margin: 50px;
  13. position: absolute;
  14. /* position: relative; */
  15. }
  16. .box2{
  17. width: 400px;
  18. height: 400px;
  19. border:3px solid red;
  20. margin:50px;
  21. }
  22. .box3{
  23. width: 100px;
  24. height: 100px;
  25. background-color: blue;
  26. position: absolute;
  27. top:0;
  28. left: 0;
  29. }
  30. .box4{
  31. height: 100px;
  32. background-color: yellow;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="box1">
  38. <div class="box2">
  39. <div class="box3"></div>
  40. </div>
  41. </div>
  42. <div class="box4"></div>
  43. </body>
  44. </html>