Skip to content

Instantly share code, notes, and snippets.

@ackernaut
Created April 16, 2012 20:35
Show Gist options
  • Save ackernaut/2401354 to your computer and use it in GitHub Desktop.
Save ackernaut/2401354 to your computer and use it in GitHub Desktop.
CSS: Border-box sizing
// Border-box sizing
.box-sizing {
-moz-box-sizing: border-box;
-ms-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