html - Email newsletter first empty table cell height issue in Outlook 2013 -



html - Email newsletter first empty table cell height issue in Outlook 2013 -

the first empty table cell in newsletter displayed much bigger in outlook 2013. have:

<tr> <td bgcolor="#b0bc12" height="10" style="background-color:#b0bc12; height:10px;"></td> </tr>

this works fine on every email client have tested on in outlook 2013, height seems double assigned height. set next code in header not seem have effect:

<!--[if gte mso 15]> <style type="text/css" media="all"> body { font-size: 0; line-height: 0; } tr { font-size:1px; mso-line-height-alt:0; mso-margin-top-alt:1px; } </style> <![endif]-->

i have similar empty cells farther downwards newsletter working fine. first 1 having issue.

outlook 2013 tends render images/spacers @ double height below 19px. adding style <td> , styling font-size , line-height 1px should prepare this.

<tr> <td bgcolor="#b0bc12" height="10" style="font-size:1px; line-height:1px; background-color:#b0bc12; height:10px;"></td> </tr>

html css email outlook outlook-2013

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -