blob: b8e3254c6e461ac5015e7619f1237d8d8fbeb05f [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
width: 200px;
height: 200px;
}
.blur {
filter: blur(10px);
}
.accelerated {
will-change: transform;
}
#resize {
background-color: green;
width: 100px;
}
</style>
<div class="blur">
<div class="accelerated" id="resize"></div>
</div>