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