JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    <img class="child" src="http://placekitten.com/100" />
</div>

<br>

<div class="parent">
    <div class="child" style="width:100px;height:100px;background:#000;"></div>
</div>

CSS

.parent {
    width: 100px;
    height: 100px;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.child {
    -webkit-filter: blur(10px);
}