Skip to content

Instantly share code, notes, and snippets.

@etasi
Last active August 29, 2015 14:14
Show Gist options
  • Select an option

  • Save etasi/f6197117f7226a429b93 to your computer and use it in GitHub Desktop.

Select an option

Save etasi/f6197117f7226a429b93 to your computer and use it in GitHub Desktop.
CSS: Tinted Image With Multiple Backgrounds
.tinted-image {
background:
/* top, transparent red, faked with gradient */
linear-gradient(
rgba(255, 0, 0, 0.45),
rgba(255, 0, 0, 0.45)
),
/* bottom, image */
url(image.jpg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment