I am facing an issue with my email signature setup in Outlook Live where there is a white space below the image.
After trying to add vertical-align:bottom to the CSS, it seems that Outlook Live does not accept it. The code for my HTML in Outlook 20xx is as follows:
<td width="106pt" height="80pt" valign="bottom" style="width:106pt; height:80pt; padding:0cm 0cm 0cm 0cm;overflow:hidden;">
<span style="">
<v:shape id="_x0000_i1025" type="#_x0000_t75" alt="" style='z-index:-9999999999;position:relative;vertical-align:bottom;width:106.5pt;height:79.5pt;left:0;right:0;top:0;bottom:0;border:none;padding:0;'>
<v:imagedata src="image_bestanden/image001.png" o:style="vertical-align:bottom;" o:href="https://logos.solvarea.nl/logo-klein.png"/>
</v:shape>
</span>
The code when viewed from Outlook Live webmail:
<td width="141" valign="bottom" style="width:106.0pt; padding:0cm 0cm 0cm 0cm; height:80.0pt">
<p class="x_MsoNormal">
<img data-imagetype="AttachmentByCid" originalsrc="cid:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="284145494f4d1818190658464f6818196c1e19691a6d066d191818116c1e18">[email protected]</a>" style="cursor: pointer;" crossorigin="use-credentials">
</p>
The desired code (with vertical-align:bottom added) would be:
<td width="141" valign="bottom" style="width:106.0pt; padding:0cm 0cm 0cm 0cm; height:80.0pt">
<p class="x_MsoNormal">
<img data-imagetype="AttachmentByCid" originalsrc="cid:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="ed84808c8a88dddddcc39d838aaddddca9dbdcacdfa8c3a8dcddddd4a9dbdd">[email protected]</a>" style="cursor: pointer;vertical-align: bottom;" crossorigin="use-credentials">
</p>
Despite trying to add inline styling for vertical align, Outlook Live rejects it. Please assist me in achieving the desired result without wasting more time on testing.