Skip to content

Instantly share code, notes, and snippets.

@zolitch
Last active August 29, 2015 14:12
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 zolitch/54b97bb32519dbe7ad78 to your computer and use it in GitHub Desktop.
Save zolitch/54b97bb32519dbe7ad78 to your computer and use it in GitHub Desktop.
Background image with overlay in one declaration
.darken {
background-image:
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url(image.jpg);
}
/*
Also see: http://dabblet.com/gist/a8be0d5d5731023f9c1a for color blend option.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment