Posted By

SevenLayersDesign on 03/04/11


Tagged

css textmate reset meyer html5 Clark


Versions (?)

Who likes this?

3 people have marked this snippet as a favorite

JoF
kate
marcius


Eric Meyer's Reset Reloaded with HTML5 Baseline


 / Published in: Other
 

  1. /*
  2. html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  3. v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  4. html5doctor.com/html-5-reset-stylesheet/
  5. */
  6.  
  7. html, body, div, span, object, iframe,
  8. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  9. abbr, address, cite, code,
  10. del, dfn, em, img, ins, kbd, q, samp,
  11. small, strong, sub, sup, var,
  12. b, i,
  13. dl, dt, dd, ol, ul, li,
  14. fieldset, form, label, legend,
  15. table, caption, tbody, tfoot, thead, tr, th, td,
  16. article, aside, canvas, details, figcaption, figure,
  17. footer, header, hgroup, menu, nav, section, summary,
  18. time, mark, audio, video {
  19. margin:0;
  20. padding:0;
  21. border:0;
  22. outline:0;
  23. font-size:100%;
  24. vertical-align:baseline;
  25. background:transparent;
  26. }
  27.  
  28. article, aside, details, figcaption, figure,
  29. footer, header, hgroup, menu, nav, section {
  30. display:block;
  31. }
  32.  
  33. nav ul { list-style:none; }
  34.  
  35. blockquote, q { quotes:none; }
  36.  
  37. blockquote:before, blockquote:after,
  38. q:before, q:after { content:''; content:none; }
  39.  
  40. a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
  41.  
  42. ins { background-color:#ff9; color:#000; text-decoration:none; }
  43.  
  44. mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
  45.  
  46. del { text-decoration: line-through; }
  47.  
  48. abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
  49.  
  50. /* tables still need cellspacing="0" in the markup */
  51. table { border-collapse:collapse; border-spacing:0; }
  52.  
  53. hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
  54.  
  55. input, select { vertical-align:middle; }
  56.  
  57. /* END RESET CSS */

Report this snippet  

You need to login to post a comment.