Bạn có thể thử chạy mã sau để triển khai chuyển đổi 3D trục Y với CSS3:
Ví dụ
<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>