Bạn có thể thử chạy mã sau để triển khai chuyển đổi 3D trục Z với CSS3:
Ví dụ
<html>
<head>
<style>
div {
width: 200px;
height: 100px;
background-color: pink;
border: 1px solid black;
}
div#zDiv {
-webkit-transform: rotateZ(90deg);
/* Safari */
transform: rotateZ(90deg);
/* Standard syntax */
}
</style>
</head>
<body>
<p>rotate Z axis</p>
<div id = "zDiv">
tutorialspoint.com.
</div>
</body>
</html> Đầu ra