I've implemented the background-blend-mode on this element:
<a href="#" class="blend">
<h3>Title</h3>
<p>Content goes here</p>
</a>
It's all set up with a background-image url. When the element with class .blend
is hovered over, the background changes to this:
.blend:hover {
background-blend-mode:multiply;
background-color: rgba(0,0,0,.6);
}
Everything works smoothly, except for IE (as expected). Are there any alternative methods I can try to make it work in IE? Perhaps a jQuery workaround or a specific prefix like -ms-
?