Usage

Control the border color of an element using the utilities.

To control the border color of an element at a specific breakpoint, add a {screen}: prefix to any existing border color utility. For example, use md:border-green to apply the border-green utility at only medium screen sizes and above.

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Border Color - 图3

all

sm

Border Color - 图5

lg

Border Color - 图7

xl

Hover

To control the border color of an element on hover, add the hover: prefix to any existing border color utility. For example, use hover:border-blue to apply the border-blue utility on hover.

Border Color - 图9

Hover utilities can also be combined with responsive utilities by adding the responsive prefix before the focus: prefix.

To control the border color of an element on focus, add the focus: prefix to any existing border color utility. For example, use focus:border-blue to apply the border-blue utility on focus.

Focus utilities can also be combined with responsive utilities by adding the responsive {screen}: prefix before the focus: prefix.

    Customizing

    By default Tailwind makes the entire available as border colors.

    You can customize your color palette by editing the colors variable in your Tailwind config file, or customize just your border colors using the borderColors section of your Tailwind config.

    By default, only responsive, hover and focus variants are generated for border color utilities.

    You can control which variants are generated for the border color utilities by modifying the borderColors property in the modules section of your Tailwind config file.

    For example, this config will also generate variants:

    Border Color - 图12

    If you don’t plan to use the border color utilities in your project, you can disable them entirely by setting the borderColors property to false in the section of your config file: