Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Right aligning image for Outlook email

Tags:

html

css

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?

like image 579
dublintech Avatar asked Sep 05 '25 23:09

dublintech


1 Answers

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>
like image 159
Robert Fricke Avatar answered Sep 10 '25 00:09

Robert Fricke