Skip to content

Instantly share code, notes, and snippets.

@fubhy
Created July 22, 2015 12:47
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 fubhy/582872fa36a3c9044d68 to your computer and use it in GitHub Desktop.
Save fubhy/582872fa36a3c9044d68 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@function image-url($path) {
@return '../images/#{$path}';
}
.foo {
background: url(image-url('asd.png'));
}
.foo {
background: url("../images/asd.png");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment