I'm having issues with the Outlook Web App (OWA). Needless to say, there are numerous issues with various Outlook clients, but OWA is the least documented one I've come across.
The code below works perfectly in all clients, Outlook 2000-2013, GMail, Yahoo, AOL, but in OWA, the text is always set to text-align: justify
and I can't override it.
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" width="208" valign="top">
<div><multiline label=”Body”>
Dummy text goes in here, blah blah blah. Man, I'm hungry.
</multiline></div>
</td>
</tr>
</table>
So far I've tried setting:
text-align: left
text-align: left !important
float: left
float: left !important
On the following elements:
<table>
<td>
<div>
<span>
<multiline>
.left
as as class
Also, a slightly unrelated note, but the
<div><multiline label="Body"> content </multiline></div>
takes care of the double line spacing that only occurs in OWA.
Any ideas on how to set text-align: left
?