Skip to content

Instantly share code, notes, and snippets.

@hitautodestruct
Created January 20, 2014 14:28
Show Gist options
  • Save hitautodestruct/8520789 to your computer and use it in GitHub Desktop.
Save hitautodestruct/8520789 to your computer and use it in GitHub Desktop.
Quick reference to Paul Irish's box-sizing method. http://www.paulirish.com/2012/box-sizing-border-box-ftw
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-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