reset.css 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. background: #fff;
  7. color: #000;
  8. font-size: 14px;
  9. font-family: Verdana, Arial, Helvetica, sans-serif;
  10. }
  11. td, th, caption {
  12. font-size: 14px;
  13. }
  14. h1, h2, h3, h4, h5, h6 {
  15. font-size: 100%;
  16. }
  17. address, caption, cite, code, dfn, em, th, var {
  18. font-style: normal;
  19. font-weight: normal;
  20. }
  21. a {
  22. text-decoration: none;
  23. }
  24. img {
  25. border: none;
  26. }
  27. ol, ul, li {
  28. list-style: none;
  29. }
  30. li {
  31. vertical-align: top;
  32. }
  33. input, textarea, select, button {
  34. font: 14px Verdana, Helvetica, Arial, sans-serif;
  35. }
  36. table {
  37. border-collapse: collapse;
  38. }
  39. .clearfix:after {
  40. content: ".";
  41. display: block;
  42. height: 0;
  43. clear: both;
  44. visibility: hidden;
  45. }
  46. .clearfix {
  47. *zoom: 1;
  48. }