Skip to content

Instantly share code, notes, and snippets.

@thomasthesecond
Created May 27, 2013 16:55
Show Gist options
  • Save thomasthesecond/5658072 to your computer and use it in GitHub Desktop.
Save thomasthesecond/5658072 to your computer and use it in GitHub Desktop.
Useful SASS functions to convert pixel values to percentages or ems.
@function ems($target, $context)
{
@return $target / $context * 1em
}
@function percent($target, $context)
{
@return $target / $context * 100%
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment