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

Stroke Width

Utilities for styling the stroke width of SVG elements.

Default class reference

Class
屬性
stroke-0stroke-width: 0;
stroke-1stroke-width: 1;
stroke-2stroke-width: 2;

Usage

Use the stroke-{width} utilities to set the stroke width of an SVG.

Useful for styling icon sets like Heroicons that are drawn entirely with strokes.

<svg class="stroke-current stroke-1 text-green-600 ..."></svg>
<svg class="stroke-current stroke-2 text-green-600 ..."></svg>

Responsive

To control the stroke width of an SVG element at a specific breakpoint, add a {screen}: prefix to any existing width utility. For example, adding the class md:stroke-2 to an element would apply the stroke-2 utility at medium screen sizes and above.

<svg class="stroke-1 md:stroke-2 ...">
  <!-- ... -->
</svg>

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

Customizing

Control which stroke-width utilities Tailwind generates by customizing the theme.strokeWidth section in your tailwind.config.js file:

  // tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        strokeWidth: {
+         '3': '3',
+         '4': '4',
        }
      }
    }
  }

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

Variants

默認情況下, 只有 響應式 的 stroke-width 變化模式 (variants) 會產生。

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

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

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

Disabling

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

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