首頁 >web前端 >css教學 >CSS 變換屬性的使用

CSS 變換屬性的使用

WBOY
WBOY轉載
2023-09-01 11:17:02696瀏覽

CSS 变换属性的使用

CSS 中的變換屬性用於對元素套用 2D 或 3D 變換。您可以嘗試執行以下程式碼來實現轉換屬性 -

範例

#現場示範

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 200px;
            height: 100px;
            background-color: gray;
            transform: rotate(10deg);
         }
      </style>
   </head>
   <body>
      <h1>Rotation</h1>
      <div>Demo</div>
   </body>
</html>

以上是CSS 變換屬性的使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除