dublintech
dublintech

Reputation: 17785

Right aligning image for Outlook email

I right align my image using float.

<div align="left">
   Insight
   <img height="20" style="float:right;" src="https://mydomain/myimage.jpeg">
</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?

Upvotes: 3

Views: 17012

Answers (1)

Robert Fricke
Robert Fricke

Reputation: 3643

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="https://mydomain/myimage.jpeg">
        </td>
    </tr>
</table>

Upvotes: 11

Related Questions