Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created March 20, 2014 20:09
Show Gist options
  • Save jbutko/9672737 to your computer and use it in GitHub Desktop.
Save jbutko/9672737 to your computer and use it in GitHub Desktop.
CSS, SASS: em mixin
/* PX to EM conversion
example: font-size: em(30);
*/
@function em($target, $context: 16) {
@return ($target / $context) * 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment