I right align my image using float.
<div align="left"> Insight <img height="20" src=""> </div> I send this html as an email. However, in microsoft outlook the image does not right align because I think ms outtlook does not support float.
Is there any other way to right align it?
21 Answer
Tables, nested tables and more tables is the key for Outlook.
<table width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td align="right" valign="top"> <img height="20" src=""> </td> </tr> </table> 1