Skip to content

Instantly share code, notes, and snippets.

@sambody
Created June 11, 2013 23:35
Show Gist options
  • Save sambody/5761764 to your computer and use it in GitHub Desktop.
Save sambody/5761764 to your computer and use it in GitHub Desktop.
CSS: Box sizing for all (IE8+)
* {
-webkit-box-sizing: border-box;
-moz-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