reset.css 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. html,
  2. body,
  3. div,
  4. span,
  5. iframe,
  6. h1,
  7. h2,
  8. h3,
  9. h4,
  10. h5,
  11. h6,
  12. p,
  13. a,
  14. img,
  15. i,
  16. dl,
  17. dt,
  18. dd,
  19. ol,
  20. ul,
  21. li,
  22. label,
  23. tr,
  24. th,
  25. td,
  26. input {
  27. margin: 0;
  28. padding: 0;
  29. border: 0;
  30. font-size: 14px;
  31. font-style: normal;
  32. }
  33. html,
  34. body {
  35. font-family: 'Microsoft YaHei', arial, tahoma, sans-serif;
  36. color: #000;
  37. }
  38. ol,
  39. ul {
  40. list-style: none;
  41. }
  42. li {
  43. list-style: none;
  44. }
  45. a {
  46. text-decoration: none;
  47. color: #000;
  48. }
  49. button {
  50. cursor: pointer;
  51. outline: none;
  52. background-color: #fff;
  53. border: 0 none;
  54. }
  55. table {
  56. border-collapse: collapse;
  57. border-spacing: 0;
  58. }
  59. input,
  60. textarea {
  61. border: none;
  62. margin: 0;
  63. padding: 0;
  64. outline: none;
  65. }
  66. .clearfix:after{
  67. content: "";
  68. display: block;
  69. height: 0;
  70. clear: both;
  71. visibility: hidden;
  72. }
  73. .clearfix {
  74. zoom: 1;
  75. }