Need to Set 'maximum with' of 'Description' column in html table as an percentage. When I tried with 'width' , It will take 30% for the 'Description' column , when the length of description is less than 30% as well. So need to set 'max-width' not the 'width' . But following piece of code is not working. Can you please help me.
<table style='font-family: Arial; font-size: 14px;' border='0' cellpadding='5'>
<tbody>
<tr>
<th align='left'>Number</th>
<th align='left' max-width='30%'>Description</th>
<th align='left'>Company</th>
<th align='left'>Next Number</th>
<th align='left'>Name</th>
</tr>
<tr>
<td>123456</td>
<td>Testing max width Testing max width Testing max width Testing max width Testing max width Testing max width Testing max width Testing max width </td>
<td>ABCDE</td>
<td>123456</td>
<td>ABCDE</td>
</tr>
</tbody>
</table>