Border Opacity

    v1.4.0+

    Utilities for controlling the opacity of an element’s border color.

    Control the opacity of an element’s border color using the utilities.

    1. <div class="border-2 border-blue-500 border-opacity-75 md:border-opacity-50">
    2. <!-- ... -->

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

    To customize the opacity values for all opacity-related utilities at once, use the opacity section of your tailwind.config.js theme configuration:

    If you want to customize only the border opacity utilities, use the borderOpacity section:

    1. // tailwind.config.js
    2. theme: {
    3. extend: {
    4. borderOpacity: {
    5. + '10': '0.1',
    6. + '20': '0.2',
    7. + '95': '0.95',
    8. }
    9. }
    10. }

    Learn more about customizing the default theme in the .

    You can control which variants are generated for the border opacity utilities by modifying the property in the variants section of your tailwind.config.js file.

    For example, this config will also generate active and group-hover variants:

    Disabling

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

    1. // tailwind.config.js
    2. module.exports = {
    3. corePlugins: {
    4. // ...
    5. + borderOpacity: false,
    6. }

      Border Style →