Skip to content

Instantly share code, notes, and snippets.

@morningtoast
Created May 13, 2014 14:30
Show Gist options
  • Save morningtoast/f1789fd1227ca67bdec0 to your computer and use it in GitHub Desktop.
Save morningtoast/f1789fd1227ca67bdec0 to your computer and use it in GitHub Desktop.
SASS: PX to EM function
// SASS
@function pxtoem($pixels, $context: 16) {
@return #{$pixels/$context}em
}
// USE
.element {
max-width: pxtoem(780);
}
// RESULT
.element {
max-width: 48.75em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment