Outlook conditional CSS
Windows Outlook 2003 and above use Microsoft Word as a rendering engine, which can lead to some weird rendering issues. Outlook conditional comments allow us to add bits of HTML that are only read by the Word-based versions of Outlook.
We can use MSO (Microsoft Office) tags to add HTML / CSS anywhere in an email template. This code will be ignored by other email clients. Here’s what it looks like:
Only Outlook will render this table.
MSO tags can also be used to add styles targeting Outlook (Outlook supports CSS in the <head>
):
It’s the same thing we used to do to target old versions of Internet Explorer, except it targets Microsoft Office.
The main way we use MSO tags in our emails is to create “ghost tables” so hybrid emails don’t fall apart in Outlook. Hybrid design uses inline-block
, max-width
, min-width
to stack table columns. Outlook doesn’t support these CSS properties, so we use MSO tags to create “ghost tables” that apply a fixed width just for Outlook.
Without the ghost table above, Outlook would display the <div>
at 100% width. Learn how we use ghost tables to make our emails responsive.
We usually target all versions of Outlook using <!--[if mso]>
. But sometimes when testing emails in Litmus, an email looks ok in one Outlook version but is broken in another. It’s not common but it happens, and there are a few ways to target specific versions of Outlook while omitting others.
Using Microsoft Office version numbers allows you to target a specific Outlook version.
Outlook version(s) | Code |
---|---|
All Windows Outlook
Most common
|
<!--[if mso]> your code <![endif]--> |
Outlook 2000 | <!--[if mso 9]> your code <![endif]--> |
Outlook 2002 | <!--[if mso 10]> your code <![endif]--> |
Outlook 2003 | <!--[if mso 11]> your code <![endif]--> |
Outlook 2007 | <!--[if mso 12]> your code <![endif]--> |
Outlook 2010 | <!--[if mso 14]> your code <![endif]--> |
Outlook 2013 | <!--[if mso 15]> your code <![endif]--> |
Outlook 2016 | <!--[if mso 16]> your code <![endif]--> |
Using operators allows you to create conditional expressions for targeting multiple Outlook versions.
Code | Description | Example |
---|---|---|
gt |
greater than | <!--[if gt mso 14]> Everything above Outlook 2010 <![endif]--> |
lt |
less than | <!--[if lt mso 14]> Everything below Outlook 2010 <![endif]--> |
gte |
greater than or equal to | <!--[if gte mso 14]> Outlook 2010 and above <![endif]--> |
lte |
less than or equal to | <!--[if lte mso 14]> Outlook 2010 and below <![endif]--> |
| |
or | <!--[if (mso 12)|(mso 16)]> Outlook 2007 / 2016 only <![endif]--> |
! |
not | <!--[if !mso]><!--> All Outlooks will ignore this <!--<![endif]--> |