Advertisement
ten80snowboarder

HTML5 CSS Reset

May 18th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.91 KB | None | 0 0
  1. /* Use this line to @import into your main CSS */
  2. @import url('css/reset.css');
  3.  
  4.  
  5. /*
  6. html5doctor.com Reset Stylesheet
  7. v1.6.1
  8. Last Updated: 2010-09-17
  9. Author: Richard Clark - http://richclarkdesign.com
  10. Twitter: @rich_clark
  11. */
  12.  
  13. html, body, div, span, object, iframe,
  14. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  15. abbr, address, cite, code,
  16. del, dfn, em, img, ins, kbd, q, samp,
  17. small, strong, sub, sup, var,
  18. b, i,
  19. dl, dt, dd, ol, ul, li,
  20. fieldset, form, label, legend,
  21. table, caption, tbody, tfoot, thead, tr, th, td,
  22. article, aside, canvas, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section, summary,
  24. time, mark, audio, video {
  25.     margin:0;
  26.     padding:0;
  27.     border:0;
  28.     outline:0;
  29.     font-size:100%;
  30.     vertical-align:baseline;
  31.     background:transparent;
  32. }
  33.  
  34. body {
  35.     line-height:1;
  36. }
  37.  
  38. article,aside,details,figcaption,figure,
  39. footer,header,hgroup,menu,nav,section {
  40.     display:block;
  41. }
  42.  
  43. nav ul {
  44.     list-style:none;
  45. }
  46.  
  47. blockquote, q {
  48.     quotes:none;
  49. }
  50.  
  51. blockquote:before, blockquote:after,
  52. q:before, q:after {
  53.     content:'';
  54.     content:none;
  55. }
  56.  
  57. a {
  58.     margin:0;
  59.     padding:0;
  60.     font-size:100%;
  61.     vertical-align:baseline;
  62.     background:transparent;
  63. }
  64.  
  65. /* change colours to suit your needs */
  66. ins {
  67.     background-color:#ff9;
  68.     color:#000;
  69.     text-decoration:none;
  70. }
  71.  
  72. /* change colours to suit your needs */
  73. mark {
  74.     background-color:#ff9;
  75.     color:#000;
  76.     font-style:italic;
  77.     font-weight:bold;
  78. }
  79.  
  80. del {
  81.     text-decoration: line-through;
  82. }
  83.  
  84. abbr[title], dfn[title] {
  85.     border-bottom:1px dotted;
  86.     cursor:help;
  87. }
  88.  
  89. table {
  90.     border-collapse:collapse;
  91.     border-spacing:0;
  92. }
  93.  
  94. /* change border colour to suit your needs */
  95. hr {
  96.     display:block;
  97.     height:1px;
  98.     border:0;  
  99.     border-top:1px solid #cccccc;
  100.     margin:1em 0;
  101.     padding:0;
  102. }
  103.  
  104. input, select {
  105.     vertical-align:middle;
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement