reset.css 815 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* reset */
  2. html{
  3. -webkit-text-size-adjust:none;
  4. -webkit-user-select:none;
  5. -webkit-touch-callout: none;
  6. font-family: Helvetica;
  7. }
  8. body {
  9. font-size:12px;
  10. }
  11. body,h1,h2,h3,h4,h5,h6,p,dl,dd,ul,ol,pre,form,input,textarea,th,td,select{
  12. margin:0; padding:0;
  13. font-weight: normal;text-indent: 0;
  14. }
  15. a,button,input,textarea,select,div,img{
  16. background: none;
  17. -webkit-tap-highlight-color:rgba(255,0,0,0);
  18. outline:none;
  19. -webkit-appearance:none;
  20. }
  21. em{
  22. font-style:normal
  23. }
  24. li {
  25. list-style:none;
  26. }
  27. a{
  28. text-decoration:none;
  29. }
  30. img{
  31. border:none; vertical-align:top;
  32. }
  33. table{
  34. border-collapse:collapse;
  35. }
  36. textarea{
  37. resize:none; overflow:auto;
  38. }
  39. *{
  40. box-sizing: border-box;
  41. }
  42. /* end reset */
  43. .clearfix::after {
  44. display: block;
  45. clear: both;
  46. content: "";
  47. }