Created
February 5, 2015 09:11
-
-
Save RoelN/6cfe52dd49d47e1c1c04 to your computer and use it in GitHub Desktop.
Super basic CSS reset and boilerplate: essential styling for any new project
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
html { | |
box-sizing: border-box; | |
} | |
*, | |
*:before, | |
*:after { | |
margin: 0; | |
padding: 0; | |
box-sizing: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment