Last active
August 29, 2015 14:07
-
-
Save Undistraction/f1f76837e7e342e4f556 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.5) | |
// Compass (v1.0.1) | |
// ---- | |
$unit: rem; | |
$value: 23; | |
.Box { | |
// Try interpolation | |
$united-value: #{$value}#{$unit}; | |
value: $united-value; // Appears to be correct | |
// Check it is actually a number using unitless | |
check: unitless($united-value); // $number: "23rem" is not a number for `unitless' | |
} | |
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
$number: "23rem" is not a number for `unitless' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment