reset.css 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @charset "utf-8";
  2. body,
  3. p,
  4. h1,
  5. h2,
  6. h3,
  7. h4,
  8. h5,
  9. h6,
  10. dl,
  11. ol,
  12. ul,
  13. dd,
  14. input,
  15. textarea {
  16. padding: 0;
  17. margin: 0;
  18. }
  19. img {
  20. vertical-align: top;
  21. border: 0;
  22. }
  23. a {
  24. color: inherit;
  25. text-decoration: none;
  26. }
  27. li {
  28. list-style: none;
  29. }
  30. body {
  31. font-family: "微软雅黑", "宋体", Arial;
  32. font-size: 12px;
  33. color: #333;
  34. }
  35. input {
  36. color: inherit;
  37. font-size: inherit;
  38. font-family: inherit;
  39. }
  40. textarea {
  41. resize: none;
  42. }
  43. input:focus,
  44. button:focus,
  45. textarea:focus,
  46. select:focus {
  47. outline: none;
  48. }
  49. input[type="button"],
  50. input[type="reset"],
  51. input[type="submit"],
  52. input[type="radio"],
  53. input[type="checkbox"] {
  54. cursor: pointer;
  55. }
  56. .sl {
  57. white-space: nowrap;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. }
  61. .cl:after {
  62. content: "";
  63. display: block;
  64. clear: both;
  65. height: 0;
  66. overflow: hidden;
  67. visibility: hidden;
  68. }
  69. .cl {
  70. zoom: 1;
  71. }