Skip to content

Instantly share code, notes, and snippets.

@stephenway
Created April 5, 2012 17:54
Show Gist options
  • Save stephenway/2312847 to your computer and use it in GitHub Desktop.
Save stephenway/2312847 to your computer and use it in GitHub Desktop.
CSS Apply a natural box layout model to all elements
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@stephenway
Copy link
Author

Credit Paul Irish, published on his blog http://paulirish.com/2012/box-sizing-border-box-ftw/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment