html4 - HTML emails - do fonts cascade? -
if specify arial font table, cascade down default font cells/tables within table?
e.g work consistently among popular email clients?
<table align="left" style="font-family: arial, sans-serif; font-size: 13px;"> <tr> <td> <table width="100%"> <tr> <td> table - text here still arial? </td> </tr> </table> </td> </tr> </table>
it work clients not all.. in outlook 2010 , 2013. (same percentage of width)
best specify wanted styles , fonts each <td>
in following:
<table align="left" border="0" cellpadding="0" cellspacing="0"> <tr> <td style="width: 100%;"> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td style="font-family: arial, sans-serif; font-size: 13px;"> table - text here formatted clients </td> </tr> </table> </td> </tr> </table>
Comments
Post a Comment