blob: 68f6afb8dc2c9f2158f303a67480b028a795ebc3 [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;
box-shadow: 0 0 20px transparent; /* Make layers bigger */
}
.shadow {
position: absolute;
top: 110px;
left: 110px;
border: 1px solid blue;
background-color: blue;
}
</style>
</head>
<body>
<div class="filtered shadow"></div>
<div class="filtered"></div>
</body>
</html>