Tailwind CSS 填充
2022-08-15 10:51 更新
填充
用于设置 SVG 元素填充(fill)样式的功能类。
Class
|
Properties
|
---|---|
fill-current | fill: currentColor; |
使用
使用 fill-current
将 SVG 的填充色设置为当前的文本颜色。通过将该类与现有的文本颜色功能类相结合,可以轻松设置元素的填充颜色。
对于像 Zondicons 这样完全用填充色绘制的图标集来说是很有用的:
自定义
通过自定义您的 tailwind.config.js
文件的 theme.fill
部分来控制 Tailwind 生成哪些 fill
功能类。
// tailwind.config.js
module.exports = {
theme: {
fill: {
current: 'currentColor',
}
fill: theme => ({
'red': theme('colors.red.500'),
'green': theme('colors.green.500'),
'blue': theme('colors.blue.500'),
})
}
}
变体
默认情况下, 针对 fill 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 fill
属性来控制为 fill 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
fill: ['hover', 'focus'],
}
}
}
禁用
如果您不打算在您的项目中使用 fill 功能,您可以通过在配置文件的 corePlugins
部分将 fill
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
fill: false,
}
}
以上内容是否对您有帮助:
更多建议: