Skip to content

Instantly share code, notes, and snippets.

@visualpropaganda
Created February 28, 2013 11:47
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 visualpropaganda/5056199 to your computer and use it in GitHub Desktop.
Save visualpropaganda/5056199 to your computer and use it in GitHub Desktop.
CSS: box-sizing: border box
/* 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