회전X(각도) 메서드를 사용하여 CSS3와 함께 x축을 사용하여 요소를 회전 변환 -
예시
<html> <head> <style> div { width: 200px; height: 100px; background-color: pink; border: 1px solid black; } div#myDiv { -webkit-transform: rotateX(150deg); /* Safari */ transform: rotateX(150deg); /* Standard syntax */ } </style> </head> <body> <div> tutorialspoint.com </div> <p>Rotate X-axis</p> <div id = "myDiv"> tutorialspoint.com </div> </body> </html>