Created
April 1, 2015 21:39
-
-
Save benknight/5844c64c95f0b9d405dc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// 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 | |
} |
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
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