Utilities for controlling the table layout algorithm.
Use table-auto
to allow the table to automatically size columns to fit the contents of the cell.
Title | Author | Views |
---|---|---|
Intro to CSS | Adam | 858 |
A Long and Winding Tour of the History of UI Frameworks and Tools and the Impact on Design | Adam | 112 |
Intro to JavaScript | Chris | 1,280 |
<table class="table-auto">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Views</th>
</tr>
</thead>
<tbody>
<tr>
<td>Intro to CSS</td>
<td>Adam</td>
<td>858</td>
</tr>
<tr class="bg-emerald-200">
<td>A Long and Winding Tour of the History of UI Frameworks and Tools and the Impact on Design</td>
<td>Adam</td>
<td>112</td>
</tr>
<tr>
<td>Intro to JavaScript</td>
<td>Chris</td>
<td>1,280</td>
</tr>
</tbody>
</table>
Use table-fixed
to allow the table to ignore the content and use fixed widths for columns. The width of the first row will set the column widths for the whole table.
You can manually set the widths for some columns and the rest of the available width will be divided evenly amongst the columns without explicit width.
Title | Author | Views |
---|---|---|
Intro to CSS | Adam | 858 |
A Long and Winding Tour of the History of UI Frameworks and Tools and the Impact on Design | Adam | 112 |
Intro to JavaScript | Chris | 1,280 |
<table class="table-fixed">
<thead>
<tr>
<th class="w-1/2 ...">Title</th>
<th class="w-1/4 ...">Author</th>
<th class="w-1/4 ...">Views</th>
</tr>
</thead>
<tbody>
<tr>
<td>Intro to CSS</td>
<td>Adam</td>
<td>858</td>
</tr>
<tr class="bg-blue-200">
<td>A Long and Winding Tour of the History of UI Frameworks and Tools and the Impact on Design</td>
<td>Adam</td>
<td>112</td>
</tr>
<tr>
<td>Intro to JavaScript</td>
<td>Chris</td>
<td>1,280</td>
</tr>
</tbody>
</table>
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:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ tableLayout: ['hover', 'focus'],
}
}
}
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:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ tableLayout: false,
}
}