회전 Z(각도) 메서드를 사용하여 CSS3와 함께 z축을 사용하여 요소를 회전 변환 -
예시
<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"> tutorials point.com. </div> </body> </html>
출력