Tailwind CSS v1.0 is here! Learn more →

Border Collapse

Utilities for controlling whether table borders should collapse or be separated.

Work in progress!

More detailed documentation is coming soon, but in the meantime here's a quick class reference.

Class reference

Class Properties
.border-collapse border-collapse: collapse;
.border-separate border-collapse: separate;

Customizing

Responsive and State Variants

By default, no responsive, hover, focus, active, or group-hover variants are generated for border collapse utilities.

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

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

{
// ...
modules: {
    // ...
-   borderCollapse: [],
+   borderCollapse: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
}
}

Disabling

If you don't plan to use the border collapse utilities in your project, you can disable them entirely by setting the borderCollapse property to false in the modules section of your config file:

{
// ...
modules: {
    // ...
-   borderCollapse: [],
+   borderCollapse: false,
}
}