outlook.com how to target css at a specific class
问题 I am designing an HTML email and I've made it look as good as I can in the email clients I have tested. I'm checking it now it Outlook.com and it has some issues (probably because they don't support margins) so I want to add some conditional styles for that client. I know that Outlook.com wraps the email in a .ExternalClass class and prepends any custom classes with ecx so I tried something like * {color:black;} .ExternalClass * {color:red;} .ExternalClass .ecxMyClass {color:blue;}