We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

visuallyspun on 05/27/08


Tagged

css yahoo reset


Versions (?)


The Yahoo! User Interface Library (YUI)


Published in: CSS 


URL: http://reinholdweber.com/?p=14

CSS Reset. Yahoo User Interface Library

  1. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
  2.  
  3. margin:0;
  4.  
  5. padding:0;
  6.  
  7. }
  8.  
  9. table {
  10.  
  11. border-collapse:collapse;
  12.  
  13. border-spacing:0;
  14.  
  15. }
  16.  
  17. fieldset,img {
  18.  
  19. border:0;
  20.  
  21. }
  22.  
  23. address,caption,cite,code,dfn,em,strong,th,var {
  24.  
  25. font-style:normal;
  26.  
  27. font-weight:normal;
  28.  
  29. }
  30.  
  31. ol,ul {
  32.  
  33. list-style:none;
  34.  
  35. }
  36.  
  37. caption,th {
  38.  
  39. text-align:left;
  40.  
  41. }
  42.  
  43. h1,h2,h3,h4,h5,h6 {
  44.  
  45. font-size:100%;
  46.  
  47. font-weight:normal;
  48.  
  49. }
  50.  
  51. q:before,q:after {
  52.  
  53. content:'';
  54.  
  55. }
  56.  
  57. abbr,acronym { border:0;
  58.  
  59. }

Report this snippet 

You need to login to post a comment.