Skip to content

Instantly share code, notes, and snippets.

@codingdesigner
Created October 3, 2011 16:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codingdesigner/1259587 to your computer and use it in GitHub Desktop.
Save codingdesigner/1259587 to your computer and use it in GitHub Desktop.
convert px to em in sass
// convert px to em in sass.
// $target-px: the value you want to convert
// $context: the current pixel value of 1em
@function calc-em($target-px, $context) {
@return ($target-px / $context) * 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment