Created
December 16, 2017 07:49
-
-
Save a7ul/a419d5a96b8fd6a4655ccc379db92dc6 to your computer and use it in GitHub Desktop.
A reset.css for projects using css modules [helpful for react apps] (webpack css-loader with modules: true)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ | |
:global(html), :global(body), :global(div), :global(span), :global(applet), :global(object), :global(iframe), | |
:global(h1), :global(h2), :global(h3), :global(h4), :global(h5), :global(h6), :global(p), :global(blockquote), :global(pre), | |
:global(a), :global(abbr), :global(acronym), :global(address), :global(big), :global(cite), :global(code), | |
:global(del), :global(dfn), :global(em), :global(img), :global(ins), :global(kbd), :global(q), :global(s), :global(samp), | |
:global(small), :global(strike), :global(strong), :global(sub), :global(sup), :global(tt), :global(var), | |
:global(b), :global(u), :global(i), :global(center), | |
:global(dl), :global(dt), :global(dd), :global(ol), :global(ul), :global(li), | |
:global(fieldset), :global(form), :global(label), :global(legend), | |
:global(table), :global(caption), :global(tbody), :global(tfoot), :global(thead), :global(tr), :global(th), :global(td), | |
:global(article), :global(aside), :global(canvas), :global(details), :global(embed), | |
:global(figure), :global(figcaption), :global(footer), :global(header), :global(hgroup), | |
:global(menu), :global(nav), :global(output), :global(ruby), :global(section), :global(summary), | |
:global(time), :global(mark), :global(audio), :global(video) { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-size: 100%; | |
font: inherit; | |
vertical-align: baseline; | |
} | |
/* HTML5 display-role reset for older browsers */ | |
:global(article), :global(aside), :global(details), :global(figcaption), :global(figure), | |
:global(footer), :global(header), :global(hgroup), :global(menu), :global(nav), :global(section) { | |
display: block; | |
} | |
:global(body) { | |
line-height: 1; | |
} | |
:global(ol), :global(ul) { | |
list-style: none; | |
} | |
:global(blockquote), :global(q) { | |
quotes: none; | |
} | |
:global(blockquote:before), :global(blockquote:after), | |
:global(q:before), :global(q:after) { | |
content: ''; | |
content: none; | |
} */ | |
:global(table) { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use it just do:
In your
index.js