JSFiddle - React, Tailwind, and code Playground
by tjnicolaides
HTML
<div class="parent-thing">
<div class="thing"></div>
</div>
CSS
.thing {
background-color: rgba(234, 33, 45, .75);
width: 150px;
height: 150px;
}
@supports (mix-blend-mode: multiply) {
.thing {
mix-blend-mode: multiply;
background-color: rgba(234, 33, 45, 1);
}
}
.parent-thing {
width: 300px;
height: 300px;
background-image: url('http://placekitten.com/500/300');
}