reset.css 786 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. height: 100%;
  36. font-family: 'Microsoft YaHei', arial, tahoma, sans-serif;
  37. color: #000;
  38. }
  39. ol,
  40. ul {
  41. list-style: none;
  42. }
  43. li {
  44. list-style: none;
  45. }
  46. a {
  47. text-decoration: none;
  48. color: #000;
  49. }
  50. button {
  51. cursor: pointer;
  52. outline: none;
  53. background-color: #fff;
  54. border: 0 none;
  55. }
  56. table {
  57. border-collapse: collapse;
  58. border-spacing: 0;
  59. }
  60. input,
  61. textarea {
  62. border: none;
  63. margin: 0;
  64. padding: 0;
  65. outline: none;
  66. }
  67. .clearfix:after{
  68. content: "";
  69. display: block;
  70. height: 0;
  71. clear: both;
  72. visibility: hidden;
  73. }
  74. .clearfix {
  75. zoom: 1;
  76. }