When attempting to send an HTML email from Outlook 2013 to Gmail, I have encountered a significant gap between the rows. Despite my efforts, I have been unable to adjust the row height. I am seeking advice on how to resolve this issue. Here is the code snippet in question:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
table {
border-collapse: collapse;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
border-spacing: 0;
}
</style>
</head>
<body>
<table style="font-family: Arial; color: #646464; font-size: 8pt">
<tr>
<td style="font-weight: bold; font-size: 9pt; padding-bottom: 7px;">Test User</td>
</tr>
<tr>
<td style="font-size: 1px; line-height: 0; border-top: solid 1px #646464;"> </td>
</tr>
</table>
</body>
</html>