定位3.html 810 B

1234567891011121314151617181920212223242526272829303132333435363738
  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: 5px solid black;
  12. position: relative; /* 设置为相对定位 */
  13. }
  14. .div1{
  15. width: 200px;
  16. height: 200px;
  17. background-color: blue;
  18. /* margin: 0 auto; 水平居中
  19. margin-top: 100px; */
  20. position: absolute;
  21. left: 50%;
  22. top: 50%;
  23. margin-top: -100px;
  24. margin-left: -100px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box">
  30. <div class="div1"></div>
  31. </div>
  32. </body>
  33. </html>