Created
September 20, 2012 18:07
-
-
Save daveespionage/3757432 to your computer and use it in GitHub Desktop.
px to em in sass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from http://forrst.com/posts/SASS_px_to_em_and_em_to_px-JAd | |
// Convert px to em | |
@function pxtoem($target, $context){ | |
@return ($target/$context)+0em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment