Created
April 19, 2011 07:30
-
-
Save chriskottom/926964 to your computer and use it in GitHub Desktop.
A simple CSS stylesheet that I use for browser default resets
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
/* -------- CSS RESET -------- */ | |
body, html, div, blockquote, img, label, p, h1, h2, h3, h4, h5, h6, | |
pre, ul, ol, li, dl, dt, dd, form, a, fieldset, th, td { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
outline: none; | |
} | |
body { | |
line-height: 1; | |
font-size: 88%; | |
} | |
h1, h2, h3, h4, h5, h6 { | |
font-size: 100%; | |
font-weight: normal; | |
padding: 0; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment