Last active
February 7, 2024 05:18
-
-
Save elusive/b8eb6fb35754316dad849cc50cff0540 to your computer and use it in GitHub Desktop.
CSS Simple Reset
This file contains hidden or 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
/* RESET */ | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, code, | |
del, dfn, em, img, q, dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-weight: inherit; | |
font-style: inherit; | |
font-size: 100%; | |
font-family: inherit; | |
} | |
em { | |
font-style: italic; | |
} | |
strong { | |
font-weight: bold; | |
} | |
html, | |
body { | |
margin:0; | |
padding:0; | |
height:100%; | |
} | |
/* /END RESET */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment