Skip to content

Instantly share code, notes, and snippets.

@sashtown
sashtown / reset.css
Created May 8, 2012 06:32
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,