Below is the ASP image within a table cell:
<tr>
<td>
<asp:Image runat="server" Width="64px" Height="64px" ImageUrl="~/Images/user64.png" />
</td>
<td>
<div class="employee-group">
<asp:Label runat="server" ID="lblEmployeeFullname" Text="Claude" ></asp:Label>
<asp:Label runat="server" ID="lblIdEmployee" Text="34343d-dfadfsf-3433"></asp:Label>
</div>
</td>
</tr>
https://i.sstatic.net/8GNkL.png I am trying to align the width of the table cell to match the width of the image. Any suggestions on how I can achieve this?