7_水平垂直居中.html 576 B

12345678910111213141516171819202122232425262728293031
  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. body{
  14. background: #ccc;
  15. }
  16. #div1{
  17. width: 200px;
  18. height: 200px;
  19. background: red;
  20. position: absolute;
  21. left: 50%;
  22. top: 50%;
  23. margin-left: -100px;
  24. margin-top: -100px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="div1"></div>
  30. </body>
  31. </html>