39_垂直水平居中.html 689 B

1234567891011121314151617181920212223242526272829303132
  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: 300px;
  10. height: 300px;
  11. border:3px solid blue;
  12. position: relative;
  13. }
  14. .item{
  15. position: absolute;
  16. width: 100px;
  17. height: 100px;
  18. background-color: red;
  19. left: 50%;
  20. margin-left: -50px;
  21. top: 50%;
  22. margin-top: -50px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="box">
  28. <div class="item"></div>
  29. </div>
  30. </body>
  31. </html>