Skip to content

Instantly share code, notes, and snippets.

@Origame
Created March 11, 2016 10:48
Embed
What would you like to do?
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