Skip to content

Instantly share code, notes, and snippets.

@chilinaz
Created February 2, 2014 00:02
Show Gist options
  • Save chilinaz/8761030 to your computer and use it in GitHub Desktop.
Save chilinaz/8761030 to your computer and use it in GitHub Desktop.
Make all elements use the same box-sizing model (Paul Irish).
*, *:before, *:after {
-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