Currently, I am in the process of creating an HTML signature. However, I seem to be facing an issue with setting the width for the td
element. Here is a visual example that illustrates the structure and where I am encountering difficulties:
https://i.sstatic.net/zZJhF.png
<table width="480" cellspacing="0" cellpadding="0" border="0" bgcolor="#ffffff" style="display: inline-table;">
<tbody>
<tr>
<td width="5" height="1"></td>
<td width="9" height="1"></td>
<td width="182" height="1"></td>
<td width="57" height="1"></td>
<td width="30" height="1"></td>
<td width="98" height="1"></td>
<td width="37" height="1"></td>
<td width="37" height="1"></td>
<td width="37" height="1"></td>
<td width="37" height="1"></td>
<td width="37" height="1"></td>
<td width="9" height="1"></td>
<td width="5" height="1"></td>
<td width="1" height="1"></td>
</tr>
... (omitted for brevity)
</table>
I would greatly appreciate it if someone could provide some guidance and assistance in resolving this challenge.