codecamp

Tailwind CSS 填充

填充

用于设置 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,
    }
  }


Tailwind CSS 用户选择
Tailwind CSS 线条
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Tailwind CSS 基础样式

Tailwind CSS 可访问性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }