Skip to content

Instantly share code, notes, and snippets.

@benatkin
Created August 10, 2017 00:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benatkin/9e939511341d6bf635b52a47124f34da to your computer and use it in GitHub Desktop.
Save benatkin/9e939511341d6bf635b52a47124f34da to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
// sass scoping
body {
$wow: url(doge.jpg);
background-image: $wow;
}
$gobstopper: url('gobstopper.png');
.gobstopper {
background-image: $gobstopper; // change to $wow and get an error
}
body {
background-image: url(doge.jpg);
}
.gobstopper {
background-image: url("gobstopper.png");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment