Skip to content

Instantly share code, notes, and snippets.

@jamiebuilds
Created November 11, 2013 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiebuilds/7407103 to your computer and use it in GitHub Desktop.
Save jamiebuilds/7407103 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
adding unit to unitless numbers {
test-1: type-of( 12 * 1em );
test-2: type-of( 12 + em );
test-3: type-of( 12 + 'em' );
test-4: type-of( #{12 + 'em'});
test-5: type-of( #{12}em );
}
adding unit to unitless numbers {
test-1: number;
test-2: string;
test-3: string;
test-4: string;
test-5: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment