最小幅と最大幅をTHタグに設定しました。最小幅プロパティは、max-widthプロパティが反映されない場所を反映します。私は検査し、THをチェックした場合のみテーブルで<th>タグの最大幅を設定する方法、最大幅は<th>をサポートしていますか?
<table>
<thead>
<tr>
<th> S.No </th>
<th> Name </th>
<th style="min-width:40px; max-width:150px;"> Description </th>
<th> Gender </th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> Xyz </td>
<td> Having Excess content more than 160 characters </td>
<td> Male/Female </t>
</tr>
</tbody>
</table>
max-widthテーブルでは、すべてのタグに適用できます。いかなる個人でもない。 – eronax59
'table {table-layout:fixed;}'と 'th {max-width:150px}'を追加してください – murli2308