As I work on designing an emailer, I have encountered some challenges with Outlook. To address this issue, I created specific styles for Outlook (desktop) that have been effective for me. The code snippet I am using to apply these Outlook styles is:
<!--[if (gte mso 9)|(IE)]> html/css styles here <!--<![endif]-->
I also need to filter them accordingly:
<!--[if !mso]> html/css styles here <!--<![endif]-->
However, the challenge now lies in targeting Outlook Mobile specifically. How can I achieve this? For example:
<!--[if (!mso) | (.outlook-mobile-only) ]>
It appears that Outlook Mobile may not be recognizing the !mso
statement as intended, leading to it ignoring my mobile-specific styles.