Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Created January 5, 2014 11:34
Show Gist options
  • Save adikahorvath/8267241 to your computer and use it in GitHub Desktop.
Save adikahorvath/8267241 to your computer and use it in GitHub Desktop.
CSS box-sizing
/* IE8+ */
*, *:before, *:after{
-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