reset.css 669 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* 去掉标签默认的间距 */
  2. body,ul,ol,p,h1,h2,h3,h4,h4,h6,dl,dd,select,input,form{
  3. margin:0;
  4. padding:0;
  5. }
  6. /* 去掉小圆点以及数字 */
  7. ul,ol{
  8. list-style:none;
  9. }
  10. /* 去掉下划线 */
  11. a{text-decoration:none;}
  12. /* 去掉斜体 */
  13. em{
  14. font-style:normal;
  15. }
  16. /* 让h标签继承body的文字设置 */
  17. h1,h2,h3,h4,h4,h6{
  18. font-size:100%;
  19. font-weight:normal;
  20. }
  21. /* 在IE下去掉图片做链接时生成的框线 */
  22. img{
  23. border:0px;
  24. }
  25. /* 清除浮动以及清除margin-top塌陷 */
  26. .clearfix:before,.clearfix:after{
  27. content:'';
  28. display:table;
  29. }
  30. .clearfix:after{
  31. clear:both;
  32. }
  33. .clearfix{
  34. zoom:1;
  35. }
  36. .fl{
  37. float:left;
  38. }
  39. .fr{
  40. float:right;
  41. }