Skip to content

Instantly share code, notes, and snippets.

@gliesche
Created March 20, 2013 12:49
Show Gist options
  • Select an option

  • Save gliesche/5204384 to your computer and use it in GitHub Desktop.

Select an option

Save gliesche/5204384 to your computer and use it in GitHub Desktop.
Natural box layout model
/* see here: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -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