reset.css 374 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. html{
  2. box-sizing: border-box;
  3. }
  4. *,
  5. *::after,
  6. *::before{
  7. box-sizing: inherit;
  8. }
  9. ul[class],
  10. ol[class] {
  11. padding: 0;
  12. }
  13. body,
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6,
  20. p,
  21. ul[class],
  22. ol[class],
  23. li,
  24. figure,
  25. figcaption,
  26. blockquote,
  27. dl,
  28. dd {
  29. margin: 0;
  30. }
  31. ul[class] {
  32. list-style: none;
  33. }
  34. img {
  35. max-width: 100%;
  36. display: block;
  37. }
  38. input,
  39. button,
  40. textarea,
  41. select {
  42. font: inherit;
  43. }