12_水平垂直居中.html 561 B

1234567891011121314151617181920212223242526272829303132
  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. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. #div1{
  22. width: 200px;
  23. height: 200px;
  24. background: red;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="div1"></div>
  30. </body>
  31. </html>