Last active
July 17, 2018 20:27
-
-
Save dougwt/34a216ac1747d99624d13cc6e8b741ae to your computer and use it in GitHub Desktop.
css 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| outline: 0; | |
| font-size: 100%; | |
| box-sizing: border-box; | |
| vertical-align: baseline; | |
| background: transparent; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment