A SASS function which lets you specify just a filename and outputs that prefixed with a consistent path.
Last active
December 28, 2015 19:19
-
-
Save SteAllan/7549081 to your computer and use it in GitHub Desktop.
A Pen by Ste Allan.
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
| <div></div> |
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
| @import "compass"; | |
| @function bg-img ($image) | |
| { | |
| @return url(http://placehold.it/#{$image}); | |
| } | |
| div | |
| { | |
| width: 200px; | |
| height: 200px; | |
| background: red bg-img('200x200') no-repeat center; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment