Created
July 9, 2014 14:20
-
-
Save cwmanning/d3ae990b8c9f73553bd2 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.9) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
=calcIt($property, $fallback, $expression) | |
#{$property}: $fallback | |
#{$property}: calc(#{$expression}) | |
body | |
+calcIt(width, 80%, "100% - 3em") |
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
body { | |
width: 80%; | |
width: calc(100% - 3em); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment