Tailwind CSS on GitHub

边框颜色

用于控制元素边框颜色的功能类。

Default class reference

Class
Preview 
border-transparent
border-current
border-black
border-white
border-gray-50
border-gray-100
border-gray-200
border-gray-300
border-gray-400
border-gray-500
border-gray-600
border-gray-700
border-gray-800
border-gray-900
border-red-50
border-red-100
border-red-200
border-red-300
border-red-400
border-red-500
border-red-600
border-red-700
border-red-800
border-red-900
border-yellow-50
border-yellow-100
border-yellow-200
border-yellow-300
border-yellow-400
border-yellow-500
border-yellow-600
border-yellow-700
border-yellow-800
border-yellow-900
border-green-50
border-green-100
border-green-200
border-green-300
border-green-400
border-green-500
border-green-600
border-green-700
border-green-800
border-green-900
border-blue-50
border-blue-100
border-blue-200
border-blue-300
border-blue-400
border-blue-500
border-blue-600
border-blue-700
border-blue-800
border-blue-900
border-indigo-50
border-indigo-100
border-indigo-200
border-indigo-300
border-indigo-400
border-indigo-500
border-indigo-600
border-indigo-700
border-indigo-800
border-indigo-900
border-purple-50
border-purple-100
border-purple-200
border-purple-300
border-purple-400
border-purple-500
border-purple-600
border-purple-700
border-purple-800
border-purple-900
border-pink-50
border-pink-100
border-pink-200
border-pink-300
border-pink-400
border-pink-500
border-pink-600
border-pink-700
border-pink-800
border-pink-900

使用

使用 border-{color} 功能类控制元素的边框颜色。

<input class="border-2 border-red-500 ...">

改变不透明度值

使用 border-opacity-{amount} 功能类控制元素边框颜色的不透明度值。

100%
75%
50%
25%
0%
<div class="border-4 border-light-blue-500 border-opacity-100 ..."></div>
<div class="border-4 border-light-blue-500 border-opacity-75 ..."></div>
<div class="border-4 border-light-blue-500 border-opacity-50 ..."></div>
<div class="border-4 border-light-blue-500 border-opacity-25 ..."></div>
<div class="border-4 border-light-blue-500 border-opacity-0 ..."></div>

边框不透明度文档中了解更多。

响应式

要在特定的断点处控制元素的边框颜色,请在任何现有的边框颜色功能类中添加 {screen}: 前缀。例如,使用 md:border-green-500 来应用 border-green-500 功能类在中等尺寸以上的屏幕上。

<button class="border-blue-500 md:border-green-500 ...">
  Button
</button>

关于 Tailwind 的响应式设计功能的更多信息,请查看响应式设计文档。

悬停

要在悬停时控制元素的边框颜色,请在任何现有的边框颜色功能类中添加 hover: 前缀。例如,使用 hover:border-blue-500 在悬停时应用 border-blue-500 功能类。

<button class="border-2 border-purple-500 hover:border-gray-500 ...">
  Button
</button>

悬停功能类也可以通过在 hover: 前缀前添加响应的 {screen}: 前缀来与响应的功能类相结合使用。

<button class="... md:border-blue-500 md:hover:border-blue-700 ...">Button</button>

焦点

要控制焦点元素的边框颜色,请在任何现有的边框颜色功能类中添加 focus: 前缀。例如,使用 focus:border-blue-500 在焦点上应用 border-blue-500 功能类。

<input class="border border-red-500 focus:border-blue-500 ...">

通过在 focus: 前缀之前添加响应的 {screen}: 前缀,焦点功能类也可以与响应的功能类相结合使用。

<input class="... md:border-gray-200 md:focus:border-white ...">

自定义

边框颜色

默认情况下,Tailwind 将整个默认调色板作为边框颜色。

您可以通过编辑 tailwind.config.js 文件中的 theme.colors 部分来定制您的调色板,或者使用 theme.borderColor 部分来定制您的边框颜色。

  // tailwind.config.js
  module.exports = {
    theme: {
      borderColor: theme => ({
-       ...theme('colors'),
        DEFAULT: theme('colors.gray.300', 'currentColor'),
+       'primary': '#3490dc',
+       'secondary': '#ffed4a',
+       'danger': '#e3342f',
      })
    }
  }

变体

默认情况下, 针对 border color 功能类,只生成 responsive, dark mode (if enabled), group-hover, focus-within, hover and focus 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 borderColor 属性来控制为 border color 功能生成哪些变体。

例如,这个配置将生成 active 变体:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       borderColor: ['active'],
      }
    }
  }

禁用

如果您不打算在您的项目中使用 border color 功能,您可以通过在配置文件的 corePlugins 部分将 borderColor property to false in the corePlugins section of your config file:

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