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

ClassProperties
.border-collapseborder-collapse: collapse;
.border-separateborder-collapse: separate;

Customizing

Responsive and pseudo-class variants

By default, only responsive 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 variants section of your tailwind.config.js file.

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

  1. // tailwind.config.js
  2. module.exports = {
  3. variants: {
  4. // ...
  5. - borderCollapse: ['responsive'],
  6. + borderCollapse: ['responsive', 'hover', 'focus'],
  7. }
  8. }

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 corePlugins section of your config file:

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