8_水平垂直居中1.html 678 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. html,body{
  14. height: 100%;
  15. }
  16. body{
  17. background: #ccc;
  18. position: relative;
  19. }
  20. #div1{
  21. width: 200px;
  22. height: 200px;
  23. background: aqua;
  24. position: absolute;
  25. top: 50%;
  26. left: 50%;
  27. margin-left: -100px;
  28. margin-top: -100px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="div1"></div>
  34. </body>
  35. </html>