reset.css 654 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* CSS reset */
  2. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
  3. margin:0;
  4. padding:0;
  5. }
  6. html,body {
  7. margin:0;
  8. padding:0;
  9. }
  10. table {
  11. border-collapse:collapse;
  12. border-spacing:0;
  13. }
  14. fieldset,img {
  15. border:0;
  16. }
  17. input{
  18. border:1px solid #b0b0b0;
  19. padding:3px 5px 4px;
  20. color:#979797;
  21. width:190px;
  22. }
  23. address,caption,cite,code,dfn,th,var {
  24. font-style:normal;
  25. font-weight:normal;
  26. }
  27. ol,ul {
  28. list-style:none;
  29. }
  30. caption,th {
  31. text-align:left;
  32. }
  33. h1,h2,h3,h4,h5,h6 {
  34. font-size:100%;
  35. font-weight:normal;
  36. }
  37. q:before,q:after {
  38. content:'';
  39. }
  40. abbr,acronym { border:0;
  41. }