JSFiddle - React, Tailwind, and code Playground

by mikeys4u

HTML

<img src="http://www.independent.co.uk/incoming/article9809174.ece/alternates/w620/v2-web-zoella.jpg" class="myimgblur">
    
<img src="http://www.independent.co.uk/incoming/article9809174.ece/alternates/w620/v2-web-zoella.jpg" class="grayscale">

CSS

.myimgblur {
height 200px;
width: 300px;
filter: blur(2px);
}

.grayscale {
height 100px;
width: 300px;
-webkit-filter: grayscale(1);
  filter: grayscale(1);
}