11_水平垂直居中.html 618 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. }
  19. #div1{
  20. width: 200px;
  21. height: 200px;
  22. background: red;
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26. margin-top: -100px;
  27. margin-left: -100px;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="div1"></div>
  33. </body>
  34. </html>