Tailwind CSS v1.0 is here! Learn more →

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

Class Properties
.table-auto table-layout: auto;
.table-fixed table-layout: fixed;

Customizing

Responsive and State 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 modules section of your Tailwind config file.

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

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

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

{
// ...
modules: {
    // ...
-   tableLayout: ['responsive'],
+   tableLayout: false,
}
}