The standard way to blend an image with a colour is to use the following CSS:
background-image: url(photo.jpg);
background-color: red;
background-blend-mode: multiply;
I want to do this without using CSS to specify the photo, because the IMG is already being generated by the PHP of a Wordpress theme, which I don't want to mess with.
Is there a way of applying a blend mode to an IMG so that it blends with its parent DIV (or any element higher up the hierarchy)? That way I could use CSS to apply the blend mode to the IMG and a background colour to its parent DIV. (I can't seem to apply a background colour directly to an IMG).
Thanks! I hope that makes sense.