Computer >> Computer tutorials >  >> Programming >> CSS

Z-axis 3D transform with CSS3


You can try to run the following code to implement Z-axis 3D transform with CSS3:

Example

<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>

Output

Z-axis 3D transform with CSS3