Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 20:46
Show Gist options
  • Save jasonkmccoy/1730176d3b330837a091 to your computer and use it in GitHub Desktop.
Save jasonkmccoy/1730176d3b330837a091 to your computer and use it in GitHub Desktop.
Box Sizing Mixin
@mixin box-sizing($type) {
-webkit-box-sizing:$type;
-moz-box-sizing:$type;
box-sizing:$type;
}
// Usage
div {
@include box-sizing(border-box);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment