HTML总结2

1 css reset:

  
  
  
  
  1. /** 清除内外边距 **/  
  2. body, h1, h2, h3, h4, h5, h6, hr, p,   
  3. blockquote, /* structural elements 结构元素 */  
  4. dl, dt, dd, ul, ol, li, /* list elements 列表元素 */  
  5. pre/* text formatting elements 文本格式元素 */  
  6. form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */  
  7. th, td, /* table elements 表格元素 */  
  8. img/* img elements 图片元素 */{   
  9.   border:medium none;   
  10.   margin0;   
  11.   padding0;   
  12. }   
  13. /** 设置默认字体 **/  
  14. body,button, input, select, textarea {   
  15.   font12px/1.5 '宋体',tahoma, Srial, helveticasans-serif;   
  16. }   
  17. h1, h2, h3, h4, h5, h6 { font-size100%; }   
  18. em{font-style:normal;}   
  19. /** 重置列表元素 **/  
  20. ul, ol { list-stylenone; }   
  21. /** 重置超链接元素 **/  
  22. a { text-decorationnonecolor:#333;}   
  23. a:hover { text-decorationunderlinecolor:#F40; }   
  24. /** 重置图片元素 **/  
  25. img{ border:0px;}   
  26. /** 重置表格元素 **/  
  27. table { border-collapsecollapseborder-spacing0; }  

 

你可能感兴趣的:(职场,休闲,HTML总结2)