Skip to content

Instantly share code, notes, and snippets.

@nealnote
Created July 21, 2014 06:49
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 nealnote/cc12b3c80ec8123ce0fe to your computer and use it in GitHub Desktop.
Save nealnote/cc12b3c80ec8123ce0fe to your computer and use it in GitHub Desktop.
css-reset-box-sizing
/**
* http://blog.teamtreehouse.com/box-sizing-secret-simple-css-layouts#comment-50223
*/
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment