Created
May 8, 2012 06:32
-
-
Save sashtown/2633032 to your computer and use it in GitHub Desktop.
My personal CSS Reset with box-sizing
This file contains hidden or 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
* { | |
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