আপনি CSS3 এর সাথে Y-axis 3D রূপান্তর বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:
উদাহরণ
<html> <head> <style> div { width: 200px; height: 100px; background-color: pink; border: 1px solid black; } div#yDiv { -webkit-transform: rotateY(150deg); /* Safari */ transform: rotateY(150deg); /* Standard syntax */ } </style> </head> <body> <div> tutorialspoint.com </div> <p>Rotate Y axis</p> <div id = "yDiv"> tutorialspoint.com. </div> </body> </html>