Skip to content

Instantly share code, notes, and snippets.

@cliftoncanady
Created January 20, 2015 22:36
Show Gist options
  • Save cliftoncanady/f4c31f9d4b87e8f31e2e to your computer and use it in GitHub Desktop.
Save cliftoncanady/f4c31f9d4b87e8f31e2e to your computer and use it in GitHub Desktop.
CSS: Layered Images
/* Working method */
.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