DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> 主流浏覽器CSS Reset的方法(2)
主流浏覽器CSS Reset的方法(2)
編輯:CSS詳解     
OK,相信你也已經了解了CSS重設的目的,或許你也可以根據自己的喜好,寫一個自己的CSS重設系統,畢竟大家的需求和習慣的不同的。而你可以參照下面的幾款:

AteneuPopularCSS Reset

  1. Html,body,div,span,applet,object,iframe,h1,h2,h3,
  2. h4,h5,h6,p,blockquote,pre,a,abbr,acronym,
  3. address,big,cite,code,del,dfn,em,font,img,ins,
  4. kbd,q,s,samp,small,strike,strong,sub,sup,tt,
  5. var,dl,dt,dd,ol,ul,li,fIEldset,form,label,legend,
  6. table,caption,tbody,tfoot,thead,tr,th,td{
  7. margin:0;
  8. padding:0;
  9. border:0;
  10. outline:0;
  11. font-weight:inherit;
  12. font-style:inherit;
  13. font-size:100%;
  14. font-family:inherit;
  15. vertical-align:baseline;
  16. }
  17. :focus{outline:0;}
  18. a,a:link,a:visited,a:hover,a:active{text-decoration:none}
  19. table{border-collapse:separate;border-spacing:0;}
  20. th,td{text-align:left;font-weight:normal;}
  21. img,iframe{border:none;text-decoration:none;}
  22. ol,ul{list-style:none;}
  23. input,textarea,select,button{font-size:100%;font-family:inherit;}
  24. select{margin:inherit;}
  25. hr{margin:0;padding:0;border:0;color:#000;background-color:#000;height:1px}

ChrisPoteet’sReset CSS

  1. *{
  2. vertical-align:baseline;
  3. font-family:inherit;
  4. font-style:inherit;
  5. font-size:100%;
  6. border:none;
  7. padding:0;
  8. margin:0;
  9. }
  10. body{
  11. padding:5px;
  12. }
  13. h1,h2,h3,h4,h5,h6,p,pre,blockquote,form,ul,ol,dl{
  14. margin:20px0;
  15. }
  16. li,dd,blockquote{
  17. margin-left:40px;
  18. }
  19. table{
  20. border-collapse:collapse;
  21. border-spacing:0;
  22. }
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved