1.盒子水平垂直居中.css 276 B

123456789101112131415161718
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,body {
  6. height: 100%;
  7. }
  8. #box {
  9. width: 400px;
  10. height: 400px;
  11. background: #f00;
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. /* 减去自身宽高的一半 */
  16. margin-left: -200px;
  17. margin-top: -200px;
  18. }