Computer >> Máy Tính >  >> Lập trình >> CSS

Chuyển đổi 3D trục X với CSS3

Bạn có thể thử chạy mã sau để triển khai chuyển đổi 3D trục X với CSS3

Ví dụ

<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>
         tutorials point.com
      </div>
      <p>
         Rotate X-axis
      </p>
         <div id = "myDiv">
            tutorials point.com.
         </div>
   </body>
 </html>