When developing html email newsletters, I often use a structure similar to the following:
<table width="244" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffcc"> <tr> <td> <table border="0" align="left"> <tbody> <tr> <td bgcolor="#FFCCCC">text in the table cell.<br>and another line of text.<br>and a third line.</td> </tr> </tbody> </table> Hello. This is sample text. This is another sentence. Hello. This is sample text. This is another sentence. Hello. This is sample text. This is another sentence.</td> </tr>
When viewed in a browser, the result is as follows:

but when rendering Outlook 2013, the leftmost text in the main (yellow) table is disabled:

Is there an explanation or workaround for this?
(usually I would place the image instead of text in the inner (pink) table. This allows you to create a design in which the main (yellow) text seems to flow around the image. Whether the image or text is the result The text in the main (yellow) table is truncated, as shown here.)
source share