Skip to content

Instantly share code, notes, and snippets.

@RoelN
Created February 5, 2015 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RoelN/6cfe52dd49d47e1c1c04 to your computer and use it in GitHub Desktop.
Save RoelN/6cfe52dd49d47e1c1c04 to your computer and use it in GitHub Desktop.
Super basic CSS reset and boilerplate: essential styling for any new project
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