tint image with background color css

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

showing results for - "tint image with background color css"
Nicolás
30 Aug 2018
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}