你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Rotate

Utilities for rotating elements with transform.

Default class reference

Class
屬性
rotate-0--tw-rotate: 0deg;
rotate-1--tw-rotate: 1deg;
rotate-2--tw-rotate: 2deg;
rotate-3--tw-rotate: 3deg;
rotate-6--tw-rotate: 6deg;
rotate-12--tw-rotate: 12deg;
rotate-45--tw-rotate: 45deg;
rotate-90--tw-rotate: 90deg;
rotate-180--tw-rotate: 180deg;
-rotate-180--tw-rotate: -180deg;
-rotate-90--tw-rotate: -90deg;
-rotate-45--tw-rotate: -45deg;
-rotate-12--tw-rotate: -12deg;
-rotate-6--tw-rotate: -6deg;
-rotate-3--tw-rotate: -3deg;
-rotate-2--tw-rotate: -2deg;
-rotate-1--tw-rotate: -1deg;

Usage

Rotate an element by first enabling transforms with the transform utility, then specifying the rotation angle using the rotate-{angle} utilities.

<img class="transform rotate-0 ...">
<img class="transform rotate-45 ...">
<img class="transform rotate-90 ...">
<img class="transform rotate-180 ...">

Responsive

To control the rotation of an element at a specific breakpoint, add a {screen}: prefix to any existing rotate utility. For example, use md:rotate-90 to apply the rotate-90 utility at only medium screen sizes and above.

<div class="transform rotate-45 md:rotate-90"></div>

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Customizing

Rotate scale

By default, Tailwind provides seven general purpose rotate utilities. You change, add, or remove these by editing the theme.rotate section of your Tailwind config.

  // tailwind.config.js
  module.exports = {
    theme: {
      rotate: {
-       '-180': '-180deg',
        '-90': '-90deg',
-       '-45': '-45deg',
        '0': '0',
        '45': '45deg',
        '90': '90deg',
+       '135': '135deg',
        '180': '180deg',
+       '270': '270deg',
      }
    }
  }

Learn more about customizing the default theme in the theme customization documentation.

Variants

默認情況下, 只有 響應式、hover 和 focus 的 rotate 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 rotate 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 active 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       rotate: ['responsive', 'active'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 rotate 功能,可以在你的設定檔裡的 corePlugins 屬性中將 rotate 設定為 false 來停用功能:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     rotate: false,
    }
  }