在bootstrap 3
我可以將col-sm-xx
應用於thead
中的th
標記並隨意調整表列的大小。然而,這在bootstrap中不起作用。4.我如何在bootstrap 4中實現這樣的功能?bootstrap 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>
望着codeply只要正確不小,特別是如果你添加一些數據表。看到這是如何運行的:
<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>
作爲附錄這樣的問題:如果有長的內容(如非常長的URL)來顯示自舉4表即使在下面的尺寸回答中也不是一個好的解決方案。無論是使用flex-row還是row/col解決方案,溢出和文本包裝都會更好地工作 – Killerpixler