当在表的父 div 中应用背景颜色时,颜色不适用于 Outlook 2013 邮件
<div style="background-color:red">
<table>
<tr>
<td>
Background color not applying
</td>
</tr>
</table>
</div>
当在表格中应用背景颜色时,颜色适用于 Outlook 2013 邮件
<div>
<table style="background-color:red">
<tr>
<td>
Background color is applying
</td>
</tr>
</table>
</div>
有什么方法可以在父 div 中应用颜色?