reset.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // 重置所有默认样式
  2. body {
  3. font-family: sans-serif;
  4. }
  5. html, body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, fieldset, form, label, input, legend, table, caption, tbody, tfoot, thead, tr, th, td, textarea, article, aside, audio, canvas, figure, footer, header, mark, menu, nav, section, time, video {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. h1, h2, h3, h4, h5, h6 {
  10. font-size: 100%;
  11. font-weight: normal;
  12. }
  13. article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
  14. display: block;
  15. }
  16. ul, ol {
  17. list-style: none;
  18. }
  19. img {
  20. border: 0 none;
  21. vertical-align: top;
  22. }
  23. blockquote, q {
  24. quotes: none;
  25. }
  26. blockquote:before, blockquote:after, q:before, q:after {
  27. content: none;
  28. }
  29. table {
  30. border-collapse: collapse;
  31. border-spacing: 0;
  32. }
  33. strong, em, i {
  34. font-style: normal;
  35. font-weight: normal;
  36. }
  37. ins {
  38. text-decoration: underline;
  39. }
  40. del {
  41. text-decoration: line-through;
  42. }
  43. mark {
  44. background: none;
  45. }
  46. input::-ms-clear {
  47. display: none !important;
  48. }
  49. body {
  50. background: #fff;
  51. }
  52. a {
  53. text-decoration: none;
  54. color: #333;
  55. }
  56. a:hover {
  57. text-decoration: underline;
  58. }