Divide Opacity

    Control the opacity of borders between elements using the utilities.

    To control the opacity of borders between elements at a specific breakpoint, add a {screen}: prefix to any existing divide opacity utility. For example, use md:divide-opacity-50 to apply the divide-opacity-50 utility at only medium screen sizes and above.

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

    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 divide opacity utilities, use the divideOpacity section:

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

    Learn more about customizing the default theme in the theme customization documentation.

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

    For example, this config will also generate hover and focus variants:

    Disabling

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

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

    Edit this page on GitHub