Skip to content

Instantly share code, notes, and snippets.

@nilghe
Created March 25, 2015 05:33
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 nilghe/502b225dece925608cbc to your computer and use it in GitHub Desktop.
Save nilghe/502b225dece925608cbc to your computer and use it in GitHub Desktop.
Simple SASS mixin for box sizing
@mixin border-box() {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment