2.盒子水平垂直居中.css 220 B

12345678910111213141516171819
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,body {
  6. height: 100%;
  7. }
  8. body {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. }
  13. #box {
  14. width: 200px;
  15. height: 200px;
  16. background: #00f;
  17. }