HTML/CSS

CSS浏览器重置代码

日期:2012/02/12 11:38:00来源: 绿色资源网整理

Chris Poteet’s CSS浏览器重置代码

这个代码能够有效地帮助大家解决跨浏览器问题。虽然不支持IE6,但是对于这种美国占有率低于1%的浏览器,大家大可以放弃。

  1. /*  
  2.  
  3. Reset Default Browser Styles  
  4. - Place first in the listing of external style sheets for cascading.  
  5. - Be sure to explicitly set margin/padding styles.  
  6. - Styles are not reset that have to do with display (block, inline) are not reset.  
  7.  
  8. By: Chris Poteet & various influences  
  9.  
  10. */ 
  11.  
  12. * {  
  13. vertical-alignbaseline;  
  14. font-family: inherit;  
  15. font-style: inherit;  
  16. font-size100%;  
  17. bordernone;  
  18. padding0;  
  19. margin0;  
  20. }  
  21. body {  
  22. padding5px;  
  23. }  
  24. h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, ul, ol, dl {  
  25. margin20px 0;  
  26. }  
  27. li, dd, blockquote {  
  28. margin-left40px;  
  29. }  
  30. dt {  
  31. font-weightbold;  
  32. }  
  33. table {  
  34. border-collapsecollapse;  
  35. border-spacing0;  

相关文章

相关下载

网友评论

我要评论...
没有更早的评论了
取消