Your Ad Here

Posted By

Ibby on 09/05/10


Tagged

css reset Css-Snippets


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

atomicbutterfly
reed


CSS Reset


 / Published in: CSS
 

  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, font, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td {
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. outline: 0;
  14. font-size: 100%;
  15. vertical-align: baseline;
  16. background: transparent;
  17. }

Report this snippet  

Comments

RSS Icon Subscribe to comments
Posted By: enGMzizo on September 6, 2010

Thanks Very much

Posted By: Rikki on September 6, 2010

Couldn't you just use * to select all elements?

You need to login to post a comment.