Skip to content

Instantly share code, notes, and snippets.

@chriswrightdesign
Last active December 27, 2015 10:39
Show Gist options
  • Save chriswrightdesign/7312561 to your computer and use it in GitHub Desktop.
Save chriswrightdesign/7312561 to your computer and use it in GitHub Desktop.
Mixin to calculate ems
@function em( $target, $context ) {
@return $target / $context * 1em;
}
//usage font-size: em(24px, 16px);
//will return font-size:1.5em;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment