2_垂直水平居中.html 745 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. .box1{
  9. width: 400px;
  10. height: 400px;
  11. border:3px solid black;
  12. position: relative;
  13. }
  14. .box2{
  15. width: 200px;
  16. height: 200px;
  17. background-color: red;
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. /* margin-left: -100px;
  22. margin-top: -100px; */
  23. transform: translate(-50%,-50%);
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="box1">
  29. <div class="box2"></div>
  30. </div>
  31. </body>
  32. </html>