CSS grayscale filter and background-blend-mode at same time?
问题 I'm trying to treat an image the same way it is in a photoshop file - desaturating the image to grayscale, and then applying a color overlay with a multiply blend mode. To this end, I am styling a CSS background image with... .someclass { /* grayscale */ -webkit-filter: grayscale(1); filter: gray; filter: grayscale(1); filter: url(desaturate.svg#greyscale); /* multiply */ background-color: rgba(190, 50, 50, 0.65); background-blend-mode: multiply; } The problem with this is that the grayscale