Skip to content

Instantly share code, notes, and snippets.

@Origame
Created March 11, 2016 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Origame/2171bcc2dd4c4b5a5bd8 to your computer and use it in GitHub Desktop.
Save Origame/2171bcc2dd4c4b5a5bd8 to your computer and use it in GitHub Desktop.
Apply border-box
/* BORDER-BOX */
.dontMessWithMyPadding{
-ms-box-sizing: border-box;
-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