一部の列の幅を固定し、自動調整しないようにする必要があるテーブルを作成する予定です。ブートストラップ4応答するテーブルの幅が特定の幅になるようにする
この方法で試しましたが、機能しません。それでも、テキストの長さに基づいて幅を自動的に調整するようです。
どうすれば解決できますか?
<div class="container">
<table class="table table-bordered">
<thead>
<tr class="m-0">
<th class="w-20">a</th>
<th class="w-10">b</th>
<th class="w-20">c</th>
<th class="w-40">d</th>
<th class="w-10">e</th>
</tr>
</thead>
<tbody>
<tr class="m-0">
<th class="w-20">a. Width with 20</th>
<th class="w-10">b. Smaller width column</th>
<th class="w-20">c. Should be small but I'm adding the maximum text here just to test if w-20 is working.</th>
<th class="w-40">d. Biggest width but not working!</th>
<th class="w-10">e. Another small column</th>
</tr>
</tbody>
</table>
</div>
いいえ。私はこれらのクラスは存在すると思ったが、コンソールに何も表示しなかった。私はそれが間違っていると思った。ありがとう。 –