JSFiddle - React, Tailwind, and code Playground
HTML
<img src="https://loremflickr.com/300/300?1">
<img src="https://loremflickr.com/300/300?2">
<img src="https://loremflickr.com/300/300?3">
CSS
img {
position: relative;
}
img:after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: red;
filter: blur(5px);
z-index: 10;
}