reset.css 685 B

12345678910111213141516171819202122232425262728293031
  1. @charset "utf-8";
  2. /**
  3. reset css
  4. */
  5. body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
  6. margin: 0;
  7. padding: 0;
  8. }
  9. ul,ol{
  10. list-style: none;
  11. }
  12. img{
  13. border:0;
  14. -ms-interpolation-mode: bicubic;
  15. vertical-align: middle;
  16. }
  17. table {
  18. border-collapse: collapse;
  19. border-spacing: 0;
  20. }
  21. address,caption,cite,code,dfn,em,strong,th,var {
  22. font-style: normal;
  23. }
  24. h1,h2,h3,h4,h5,h6 {
  25. font-weight: normal;
  26. font-size: 100%;
  27. }
  28. abbr,acronym {
  29. border: 0;
  30. font-variant: normal;
  31. }