From Email On Acid’s June 29, 2023 article, Outlook HTML Emails: How to Fix 11 Common Rendering Issues: https://www.emailonacid.com/blog/article/email-development/how-to-code-emails-for-outlook-2016/ Change up your font sizes and
Read moreTop of images getting cut off in Outlook
In an email template with rows of stacked images, the tops of the images were getting cut off in Outlook 2013, Outlook 2013 120DPI, Outlook
Read moreFixing bugs with Outlook specific CSS
From Stig Morten Myre’s post at https://cm.engineering/fixing-bugs-with-outlook-specific-css-f4b8ae5be4f4. Conditional comments Thankfully, when Outlook 2007 came out, the Office team took a cue from Internet Explorer and
Read moreConditional Formatting for Early Outlook Versions
From Nicole Merlin’s post at https://litmus.com/community/discussions/396-conditional-code-for-outlook: To get things to work in all versions of Outlook, including Outlook 2000, 2002 & 2003 since they render
Read moreBulletproof background image with Outlook 2013 120DPI fix
The trick here is to set the image dimensions in points, not pixels, within the VML code. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> <head> <!–[if gte mso
Read moreScale images Outlook 2013 120DPI
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> <head> <!–[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml><![endif]–> </head>
Read moreOutlook specific CSS
https://cm.engineering/fixing-bugs-with-outlook-specific-css-f4b8ae5be4f4 The most common way to code Outlook targeted CSS is by placing an embedded stylesheet inside a conditional comment. <!– [if mso]> <style type="text/css">
Read moreProprietary Microsoft CSS properties
https://cm.engineering/fixing-bugs-with-outlook-specific-css-f4b8ae5be4f4 In order to maintain support for both HTML documents and various Office specific functionality, Word generates markup with a mix of standard CSS and
Read more