reset.css 805 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* CSS Reset */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. html, body {
  8. width: 100%;
  9. height: 100%;
  10. font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  11. font-size: 14px;
  12. line-height: 1.5;
  13. color: #333;
  14. background-color: #f5f5f5;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. }
  18. a {
  19. text-decoration: none;
  20. color: inherit;
  21. }
  22. ul, ol {
  23. list-style: none;
  24. }
  25. img {
  26. max-width: 100%;
  27. height: auto;
  28. vertical-align: middle;
  29. }
  30. button, input, select, textarea {
  31. font-family: inherit;
  32. font-size: inherit;
  33. outline: none;
  34. border: none;
  35. }
  36. /* 移除移动端点击高亮 */
  37. * {
  38. -webkit-tap-highlight-color: transparent;
  39. }