1641769-1.html (587B)
1 <!DOCTYPE html> 2 <html lang="en-US"> 3 <head> 4 <meta charset="UTF-8"> 5 </head> 6 <body> 7 <style> 8 .filter { 9 filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 1)); 10 } 11 12 .perspective { 13 perspective: 1000px; 14 } 15 16 .child { 17 box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 1); 18 will-change: transform; 19 background-color: green; 20 width: 100px; 21 height: 100px; 22 } 23 </style> 24 <div class="filter"> 25 <div class="perspective"> 26 <div class="child"> 27 </div> 28 </div> 29 </div> 30 </body> 31 </html>