1505934-1.html (385B)
1 <!DOCTYPE html> 2 <style> 3 body { 4 background-color: limegreen; 5 } 6 .A { 7 transform: scale(0.01) perspective(1000px); 8 transform-origin: 0% 0%; 9 filter: grayscale(40%); 10 } 11 .B { 12 background-color: black; 13 width: 10000px; 14 height: 5000px; 15 border-radius: 2000px; 16 } 17 </style> 18 <body> 19 <div class="A"> 20 <div class = "B"/> 21 </div> 22 </body>