JSFiddle - React, Tailwind, and code Playground
by halirgb
HTML
<div class="grayscale" style="background-image:url('http://lorempixel.com/400/200/');">
</div>
CSS
.grayscale {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: url(grayscale.svg#greyscale); /* Firefox 4+ */
filter: gray; /* IE 6-9 */
width:200px;
height:200px;
}