JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<img class="child" src="https://unsplash.it/400" />
</div>
CSS
.parent {
width: 400px;
height: 400px;
overflow: hidden;
}
.child {
-webkit-filter: blur(20px);
transform: scale(1.10);
}