Skip to content

Instantly share code, notes, and snippets.

@hjortureh
Created October 23, 2012 15:35
Show Gist options
  • Save hjortureh/3939509 to your computer and use it in GitHub Desktop.
Save hjortureh/3939509 to your computer and use it in GitHub Desktop.
Functions in SASS
@function pixels-to-ems($target, $context: 16) {
@return ($target / $context) * 1em;
}
.container {
width: pixels-to-ems(800);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment