Having trouble navigating the Outlook Web App (OWA)? It seems like there are countless issues with different Outlook clients, but OWA is definitely the most poorly documented one.
The snippet of code below functions flawlessly in all email clients such as Outlook 2000-2013, GMail, Yahoo, AOL. However, when it comes to OWA, the text always defaults to text-align: justify
and refuses to be overridden.
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" width="208" valign="top">
<div><multiline label=”Body”>
Insert random text here, who knows what I'm saying. I need food.
</multiline></div>
</td>
</tr>
</table>
I've attempted the following:
text-align: left;
text-align: left !important;
float: left;
float: left !important;
On these elements:
<table>
<td>
<div>
<span>
<multiline>
.left
as a class
In addition, on an unrelated note, the
<div><multiline label="Body"> content </multiline></div>
solves the issue of double line spacing that exclusively affects OWA.
Any suggestions for changing text-align: left
successfully?