W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
用于設(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,
}
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: