Skip to content

Instantly share code, notes, and snippets.

@larswittenberg
Created July 13, 2012 17:00
Show Gist options
  • Save larswittenberg/3105986 to your computer and use it in GitHub Desktop.
Save larswittenberg/3105986 to your computer and use it in GitHub Desktop.
box-sizing: border-box
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/* apply a natural box layout model to all elements */
* {
-moz-box-sizing: border-box;
-webkit-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