blob: 5215650675a370f703c1426850558f96c436f30e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {
height: 200px;
width: 200px;
margin: 50px;
border: 1px solid black;
}
.filtered {
-webkit-clip-path: inset(0px);
width: 100%;
height: 100%;
background-color: black;
filter: blur(10px);
}
</style>
</head>
<body>
<div class="wrapper">
<div class="filtered">
</div>
</div>
</body>
</html>