Created
May 1, 2015 21:09
-
-
Save dtothefp/15242073ac0c90e0b964 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
| // ---- | |
| // libsass (v3.1.0) | |
| // ---- | |
| @function image-url($filename) { | |
| @return url('/img/#{$filename}'); | |
| } | |
| .bg { | |
| background: image-url('kittens.png') no-repeat center center; | |
| } |
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
| .bg { | |
| background: url('/img/kittens.png') no-repeat center center; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment