reset.css 234 B

123456789101112131415161718192021222324252627282930
  1. html {
  2. box-sizing: border-box;
  3. font-size: 13px;
  4. }
  5. *,
  6. *:before,
  7. *:after {
  8. box-sizing: inherit;
  9. }
  10. body,
  11. h1,
  12. h2,
  13. h3,
  14. h4,
  15. h5,
  16. h6,
  17. p,
  18. ol,
  19. ul {
  20. margin: 0;
  21. padding: 0;
  22. font-weight: normal;
  23. }
  24. img {
  25. max-width: 100%;
  26. height: auto;
  27. }