Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created July 28, 2013 20:01
Show Gist options
  • Save jbutko/6099944 to your computer and use it in GitHub Desktop.
Save jbutko/6099944 to your computer and use it in GitHub Desktop.
SASS, SCSS, mixin: PX to EM conversion
/* 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