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