Skip to content

Instantly share code, notes, and snippets.

@SteAllan
Last active December 28, 2015 19:19
Show Gist options
  • Select an option

  • Save SteAllan/7549081 to your computer and use it in GitHub Desktop.

Select an option

Save SteAllan/7549081 to your computer and use it in GitHub Desktop.
A Pen by Ste Allan.

BG Image Function

A SASS function which lets you specify just a filename and outputs that prefixed with a consistent path.

A Pen by Ste Allan on CodePen.

License.

@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