Skip to content

Instantly share code, notes, and snippets.

@scottkellum
Created January 8, 2014 21:41
Show Gist options
  • Save scottkellum/8325103 to your computer and use it in GitHub Desktop.
Save scottkellum/8325103 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
test {
add-unit: 12px + 20;
multiply: 12px * 2;
negitive: 12px * -1;
// duplicate-value: 12px * 12px; // < this will result in an error
remove-value: (12px / 1px);
order-of-operations: 10 + 2 * 2; // < 2*2 happens first
}
test {
add-unit: 32px;
multiply: 24px;
negitive: -12px;
remove-value: 12;
order-of-operations: 14;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment