
1
Can multiple versions of Outlook be targeted with a single CSS declaration?
I would like to target Outlook 07,10,13 specifically(the problem children). Just a guess, but would something like this work?
<!--[if mso 12,14,15]>
<style type="text/css">
/* Your Outlook-specific CSS goes here. */
</style>
<![endif]-->
Hi Nick,
The numbers specify the version of outlook you want to target so simply remove them and it will target all versions
<!--[if mso]>
If you want to combine versions you can do that too like this
<!--[if (mso 12)|(mso 14)|(mso 15)]>
Thanks Mark! This is helpful
Hi Nick, you can also use a "greater than or equal to" expression. Here's a good reference for MSO conditional targeting: https://templates.mailchimp.com/development/css/outlook-conditional-css/