Skip to content

Instantly share code, notes, and snippets.

@sashtown
Created May 8, 2012 06:32
Show Gist options
  • Save sashtown/2633032 to your computer and use it in GitHub Desktop.
Save sashtown/2633032 to your computer and use it in GitHub Desktop.
My personal CSS Reset with box-sizing
* {
margin: 0;
padding: 0;
border: 0;
background-repeat: no-repeat;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
display: block;
}
ol, ul {
list-style: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment