Tailwind CSS 線條

2022-08-15 10:55 更新

線條

用于設(shè)置 SVG 元素線條(stroke)樣式的功能類。

Class
Properties
stroke-current stroke: currentColor;

使用

使用 stroke-current 將 SVG 的 stroke 顏色設(shè)置為當(dāng)前的文本顏色。通過將該類與現(xiàn)有的文本顏色功能類相結(jié)合,可以輕松設(shè)置元素的 stroke 顏色。

對于像 Heroicons 這樣完全用 stroke 繪制的圖標(biāo)集很有用。


<svg class="stroke-current text-purple-600 ..."></svg>

自定義

通過在您的 ?tailwind.config.js? 文件中自定義 ?theme.stroke? 部分來控制 Tailwind 生成哪些 ?stroke ?功能類。

  // tailwind.config.js
  module.exports = {
    theme: {
     stroke: {
       current: 'currentColor',
     }
     stroke: theme => ({
       'red': theme('colors.red.500'),
       'green': theme('colors.green.500'),
       'blue': theme('colors.blue.500'),
     })
    }
  }

變體

默認(rèn)情況下, 針對 stroke 功能類,只生成 responsive 變體。

您可以通過修改您的 ?tailwind.config.js? 文件中的 ?variants ?部分中的 ?stroke ?屬性來控制為 stroke 功能生成哪些變體。

例如,這個配置也將生成 hover and focus 變體:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
       stroke: ['hover', 'focus'],
      }
    }
  }

禁用

如果您不打算在您的項目中使用 stroke 功能,您可以通過在配置文件的 ?corePlugins ?部分將 ?stroke ?屬性設(shè)置為 ?false ?來完全禁用它們:

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


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號