Posted By


jccovey on 06/26/07

Tagged


Statistics


Viewed 619 times
Favorited by 0 user(s)

CSS Reset Browser Default Styles


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /* Reset and remove all browser default styling */
  2. html, body, div, span, applet, object, iframe,
  3. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  4. a, abbr, acronym, address, big, cite, code,
  5. del, dfn, em, font, img, ins, kbd, q, s, samp,
  6. small, strike, strong, sub, sup, tt, var,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td
  10. {
  11. margin: 0;
  12. padding: 0;
  13. border: 0;
  14. outline: 0;
  15. font-weight: inherit;
  16. font-style: inherit;
  17. font-size: 100%;
  18. font-family: inherit;
  19. vertical-align: baseline;
  20. }
  21.  
  22. /* Let's get busy! */
  23.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.