最佳答案
在 Bootstrap 3
中,我可以将 col-sm-xx
应用于 thead
中的 th
标记,并随意调整表列的大小。然而,这在引导程序4中不起作用。如何在引导程序4中实现类似的功能?
<thead>
<th class="col-sm-3">3 columns wide</th>
<th class="col-sm-5">5 columns wide</th>
<th class="col-sm-4">4 columns wide</th>
</thead>
查看不能正确调整大小的代码复制,特别是在向表中添加一些数据时。看看这是怎么回事:
<div class="container" style="border: 1px solid black;">
<table class="table table-bordered">
<thead>
<tr class="row">
<th class="col-sm-3">3 columns wide</th>
<th class="col-sm-5">5 columns wide</th>
<th class="col-sm-4">4 columns wide</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>456</td>
<td>789</td>
</tr>
</tbody>
</table>
</div>