reset.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* 重置样式
  2. */
  3. html,
  4. body,
  5. div,
  6. span,
  7. applet,
  8. object,
  9. iframe,
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. h6,
  16. p,
  17. blockquote,
  18. pre,
  19. a,
  20. abbr,
  21. acronym,
  22. address,
  23. big,
  24. cite,
  25. code,
  26. del,
  27. dfn,
  28. em,
  29. img,
  30. ins,
  31. kbd,
  32. q,
  33. s,
  34. samp,
  35. small,
  36. strike,
  37. strong,
  38. sub,
  39. sup,
  40. tt,
  41. var,
  42. b,
  43. u,
  44. i,
  45. center,
  46. dl,
  47. dt,
  48. dd,
  49. ol,
  50. ul,
  51. li,
  52. fieldset,
  53. form,
  54. label,
  55. legend,
  56. table,
  57. caption,
  58. tbody,
  59. tfoot,
  60. thead,
  61. tr,
  62. th,
  63. td,
  64. article,
  65. aside,
  66. canvas,
  67. details,
  68. embed,
  69. figure,
  70. figcaption,
  71. footer,
  72. header,
  73. hgroup,
  74. menu,
  75. nav,
  76. output,
  77. ruby,
  78. section,
  79. summary,
  80. time,
  81. mark,
  82. audio,
  83. video {
  84. margin: 0;
  85. padding: 0;
  86. border: 0;
  87. font-size: 100%;
  88. font: inherit;
  89. vertical-align: baseline;
  90. }
  91. /* HTML5 display-role reset for older browsers */
  92. article,
  93. aside,
  94. details,
  95. figcaption,
  96. figure,
  97. footer,
  98. header,
  99. hgroup,
  100. menu,
  101. nav,
  102. section {
  103. display: block;
  104. }
  105. body {
  106. line-height: 1;
  107. }
  108. ol,
  109. ul {
  110. list-style: none;
  111. }
  112. blockquote,
  113. q {
  114. quotes: none;
  115. }
  116. blockquote:before,
  117. blockquote:after,
  118. q:before,
  119. q:after {
  120. content: "";
  121. content: none;
  122. }
  123. table {
  124. border-collapse: collapse;
  125. border-spacing: 0;
  126. }
  127. .bgred {
  128. background: red;
  129. }
  130. .test-5::-webkit-scrollbar {
  131. width: 8px;
  132. background: hsla(0, 0%, 53%, 0.4);
  133. }
  134. .test-5::-webkit-scrollbar-thumb {
  135. background: hsla(0, 0%, 53%, 0.4);
  136. border-radius: 8px;
  137. }
  138. /* .el-table__body-wrapper::-webkit-scrollbar {
  139. width: 8px;
  140. height: 8px;
  141. background: hsla(0, 0%, 53%, 0.4);
  142. }
  143. .el-table__body-wrapper::-webkit-scrollbar-thumb {
  144. background: hsla(0, 0%, 53%, 0.4);
  145. border-radius: 8px;
  146. height: 8px;
  147. } */