Created
January 8, 2014 21:41
-
-
Save scottkellum/8325103 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.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 | |
} |
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
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