Skip to content

Instantly share code, notes, and snippets.

@finteractive
Last active August 29, 2015 14:28
Show Gist options
  • Save finteractive/a87fef229f16355ae83a to your computer and use it in GitHub Desktop.
Save finteractive/a87fef229f16355ae83a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
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