Created
August 13, 2015 13:07
-
-
Save fredericAerts/e57f708b8c8de9e030c2 to your computer and use it in GitHub Desktop.
Web developer in 3 days - v1
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
| /** | |
| * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) | |
| * http://cssreset.com | |
| */ | |
| html, body, div, span, | |
| h1, h2, h3, h4, h5, h6, p, | |
| a, strong, ul, li, article, | |
| footer, header, nav, section { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| font: inherit; | |
| font-size: 16px; | |
| line-height: 1.4em; | |
| vertical-align: baseline; | |
| } | |
| /* HTML5 display-role reset for older browsers */ | |
| article, aside, details, figcaption, figure, | |
| footer, header, hgroup, menu, nav, section { | |
| display: block; | |
| } | |
| body { | |
| line-height: 1; | |
| } | |
| ol, ul { | |
| list-style: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment