Last active
August 29, 2015 14:28
-
-
Save finteractive/a87fef229f16355ae83a 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.14) | |
// Compass (v1.0.3) | |
// ---- | |
// Interpolation Example from Sass Docs | |
// http://sass-lang.com/documentation/file.SASS_REFERENCE.html#interpolation_ | |
$name: foo; | |
$attr: border; | |
p.#{$name} { | |
#{$attr}-color: blue; | |
} | |
p { | |
$font-size: 12px; | |
$line-height: 30px; | |
font: #{$font-size}/#{$line-height}; | |
} | |
/* Another Example Not from the Docs */ | |
$interpolation: "Fifteen #{10 + 5}"; | |
.foo { | |
bar: $interpolation; | |
} |
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
p.foo { | |
border-color: blue; | |
} | |
p { | |
font: 12px/30px; | |
} | |
/* Another Example Not from the Docs */ | |
.foo { | |
bar: "Fifteen 15"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment