I recently encountered an issue where I placed an image with a height of 900px inside a table that also had a height of 900px. Strangely, an additional 5px of height was automatically added to the bottom of the table. Here is the code snippet that showcases this problem. Can anyone shed light on why this unexpected behavior is happening? Much appreciated.
<body style="margin: 0; padding: 0;">
<table align="center" border="1" cellpadding="0" cellspacing="0" width="650" height="900" style="border-collapse: collapse;" style="border-top: 1px solid white;">
<tr>
<td><img src="dummy.png" alt="#" style="width: 296px; height:auto;"></td>
</tr>
</table>
</body>