tint image css

Solutions on MaxInterview for tint image css by the best coders in the world

showing results for - "tint image css"
Simon
26 Jun 2016
1.tinted-image {
2  background-image: 
3    /* top, transparent red */
4    linear-gradient(
5      rgba(255, 0, 0, 0.45), 
6      rgba(255, 0, 0, 0.45)
7    ),
8    /* your image */
9    url(image.jpg);
10}