Skip to content

Instantly share code, notes, and snippets.

@jhummel
Created October 3, 2011 16:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhummel/1259556 to your computer and use it in GitHub Desktop.
Save jhummel/1259556 to your computer and use it in GitHub Desktop.
Converting Units
@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