我有这样一张table:
<table class="w-full text-left">
<thead>
<tr class="border-b text-blue-900">
<th class="p-3">Name</th>
<th class="p-3">Email</th>
<th class="p-3">Phone</th>
</tr>
</thead>
<tbody>
<tr class="border-b font-medium text-sm">
<td class="p-3">Gustavo</td>
<td class="p-3">gustavo.fring@gmail.com</td>
<td class="p-3">+10000000</td>
</tr>
</tbody>
</table>
对于w-full
类,表中的列尽可能地间隔开,而我需要使它们尽可能地接近,就像w-auto
类一样。但是我不能将w-full
更改为w-auto
,因为我使用border-b
类作为<tr>
标记,并且我需要它来扩展页面的宽度,就像<table>
中的w-full
类一样。
我尝试为<tr>
添加flex justify-start
类,但它使列呈波浪形,因为它们不再像在auto表中那样依赖于<th>
和<td>
标记中的文本大小。表必须作为堆栈工作,当添加新列时,它不会更改其宽度(如w-auto所做的那样),并且旧列不会移动(如w-full所做的那样)。
我找到了一个表格模板,我想如何使我的,但该方法不适用于我:desired result
1条答案
按热度按时间4sup72z81#
一个可能的解决方案是在
<tr>
元素的末尾创建另一个<th>
元素。然后,我们将<th>
元素设置为空,并具有完整的宽度:这样:
Tailwind-play