Skip to content

Instantly share code, notes, and snippets.

@zumwalt
Last active February 2, 2017 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zumwalt/5752121 to your computer and use it in GitHub Desktop.
Save zumwalt/5752121 to your computer and use it in GitHub Desktop.
calc() mixin for less
.calc(@expression) {
width: -moz-calc(@expression);
width: -o-calc(@expression);
width: -webkit-calc(@expression);
width: calc(@expression);
}
.calc(~"100% - 95px");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment