Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created July 28, 2014 14:20
Show Gist options
  • Save fieldoffice/4e3ae79c9db6fbc4607a to your computer and use it in GitHub Desktop.
Save fieldoffice/4e3ae79c9db6fbc4607a to your computer and use it in GitHub Desktop.
Sass Box Sizing
@mixin box-sizing($box-model) {
-webkit-box-sizing: $box-model;
-moz-box-sizing: $box-model;
box-sizing: $box-model;
}
*,
*:after,
*:before {
@include box-sizing(border-box);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment