Skip to content

Instantly share code, notes, and snippets.

@edysegura
Last active August 29, 2015 13:56
Show Gist options
  • Save edysegura/9230685 to your computer and use it in GitHub Desktop.
Save edysegura/9230685 to your computer and use it in GitHub Desktop.
[CSS] A basic CSS Reset with box-sizing
*, *::before, *::after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
border: none;
list-style: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment