Table Layout

Utilities for controlling the table layout algorithm.

Work in progress!

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

Class reference

ClassProperties
.table-autotable-layout: auto;
.table-fixedtable-layout: fixed;

Customizing

Responsive and pseudo-class variants

By default, only responsive variants are generated for table layout utilities.

You can control which variants are generated for the table layout utilities by modifying the tableLayout 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. - tableLayout: ['responsive'],
  6. + tableLayout: ['responsive', 'hover', 'focus'],
  7. }
  8. }

Disabling

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

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