Skip to content

Instantly share code, notes, and snippets.

@zachattack
Created August 31, 2012 20:25
Show Gist options
  • Save zachattack/3558484 to your computer and use it in GitHub Desktop.
Save zachattack/3558484 to your computer and use it in GitHub Desktop.
Paul Irish box fix
/* apply a natural box layout model to all elements */
/* 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