I am working on an email signiture sent from outlook desktop 2010. The template is looking ok in most clients, but when testing against outlook.com it seems to be inserting paragraphs around table cell text with a class of esxMscNormal with a 19pt bottom margin and breaking the whole design. Two days in and i can't seem to get it to work or find anything that allows me to override it.

Does anyone have a clue?

有帮助吗?

解决方案

If you are creating the whole email in html, try adding this to your head section style tag:

#outlook a {padding:0;}

If that doesn't work you could try adding !important

If it is just an email signature, and not a full html document, there is no way to put in a <style> tag declaration there. This is the only way to overwrite a <p> tag that doesn't exist yet.

Best way in this case is to just try to design around it.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top