Answers for "generate color image css make as background"

CSS
0

tint image with background color css

.tinted-image {
  background-image: 
    /* top, transparent red */
    linear-gradient(
      rgba(255, 0, 0, 0.45), 
      rgba(255, 0, 0, 0.45)
    ),
    /* your image */
    url(image.jpg);
}
Posted by: Guest on March-20-2020

Code answers related to "generate color image css make as background"

Browse Popular Code Answers by Language