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

Xoay góc div đến -20 độ bằng CSS

Bạn có thể thử chạy đoạn mã sau để xoay div sang góc -20 độ bằng CSS -

Ví dụ

<html>
   <head>
      <style>
         div {
            width: 300px;
            height: 100px;
            background-color: pink;
            border: 1px solid black;
         }
         div#myDiv {
            /* IE 9 */
            -ms-transform: rotate(-20deg);
            /* Safari */
            -webkit-transform: rotate(-20deg);
            /* Standard syntax */
            transform: rotate(-20deg);
         }
      </style>
   </head>
   
   <body>
      <div>
         Tutorials point.com.
      </div>
      
      <div id = "myDiv">
         Tutorials point.com
      </div>
   </body>
   
</html>

Đầu ra

Xoay góc div đến -20 độ bằng CSS