Skip to content

Instantly share code, notes, and snippets.

@dandean
Created January 28, 2014 21:33
Show Gist options
  • Select an option

  • Save dandean/8676978 to your computer and use it in GitHub Desktop.

Select an option

Save dandean/8676978 to your computer and use it in GitHub Desktop.
Sass vs Stylus
@mixin box-sizing(which) {
-moz-box-sizing: which;
box-sizing: which;
}
.thing {
@include box-sizing;
}
box-sizing() {
-moz-box-sizing: arguments;
box-sizing: arguments;
}
.thing {
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment