Skip to content

Instantly share code, notes, and snippets.

@benknight
Created April 1, 2015 21:39
Show Gist options
  • Save benknight/5844c64c95f0b9d405dc to your computer and use it in GitHub Desktop.
Save benknight/5844c64c95f0b9d405dc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@function em($target, $context: $baseFontSize) {
@if $target == 0 {
@return 0;
}
@return $target / $context + 0em;
}
$baseFontSize: 14px;
div {
font-size: em(18px); // => 1.28571em => 18px
}
$baseFontSize: 18px;
div {
font-size: em(18px); // => 1em => 18px
}
div {
font-size: 1.28571em;
}
div {
font-size: 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment