Skip to content

Instantly share code, notes, and snippets.

@lunelson
Created October 19, 2013 10:00
Show Gist options
  • Save lunelson/7053938 to your computer and use it in GitHub Desktop.
Save lunelson/7053938 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
$numerator: 5;
$demoninator: 8;
$test: (numerator: 5, denominator: 8);
.debug {
out: $numerator / $demoninator;
out: (map-get($test, numerator) / map-get($test, denominator));
}
.debug {
out: 0.625;
out: 5/8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment