Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save migcosta/69dc5d7ba745c2b75046656f4f77e338 to your computer and use it in GitHub Desktop.
Save migcosta/69dc5d7ba745c2b75046656f4f77e338 to your computer and use it in GitHub Desktop.
HTML Email Template: max-width hack for MS Outlook
<!--[if (gte mso 9)|(IE)]>
<center>
<table>
<tr>
<td width="600">
<![endif]-->
<div style="max-width: 600px; margin: 0 auto;">
<p>This text will be centered and constrained to 600 pixels even on Outlook which does not support max-width CSS</p>
</div>
<!--[if mso]>
</td>
</tr>
</table>
</center>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment