Created
October 3, 2011 16:42
-
-
Save jhummel/1259556 to your computer and use it in GitHub Desktop.
Converting Units
This file contains hidden or 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
@function convert($start, $ratio: 10px/1em) { | |
@return $start/$ratio; | |
} | |
/* image is 50px tall */ | |
convert(image-height('path/to/image.jpg')); => 5em; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment