Conditional formatting for HTML Signatures in Outlook 2016+
问题 So, I'm trying to understand the conditional formatting in HTML email signatures within Outlook 2016 and above. I have this short demo code: <!DOCTYPE HTML> <html> <head> </head> <body> <!--[if mso]> <p style="background: blue"> <![endif]--> <p style="background: pink">TEST TEST TEST</p> <!--[if mso]> </p> <![endif]--> </body> </html> Which, by my logic, should change the background colour to blue, if the HTML is rendered within Outlook 2016. However, it's pink. Is my code incorrect logically