blob: e30df100769723e737c009c120410500bd649777 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.filtered {
position: absolute;
top: 0;
left: 0;
margin: 40px;
padding: 20px;
height: 200px;
width: 200px;
background-color: silver;
border: 1px solid black;
filter: drop-shadow(110px 110px 0 blue);
box-shadow: 0 0 20px transparent; /* Make layers bigger */
}
</style>
</head>
<body>
<div class="filtered"></div>
</body>
</html>