Can I use CSS in the HTML code for my Express Email Marketing campaign?
Because some email clients do not support CSS styles, you should not include CSS in the HTML code for your Express Email Marketing® campaign. To ensure your campaign message displays correctly, we recommend formatting your message using inline styles. For example:
In contrast, CSS styles display between the <style> tags in your code, and you apply the CSS style to parts of your page. For example:
.standardText{
color:#000000;
font-weight:bold;
line-height:1.5em;
background-color:#FFFF99;
}
</style>
<td class="standardText">This is text formatted using a style sheet!</td>
Although both of these methods produce the same formatting results, the inline styles display accurately in most, if not all, email clients. The CSS formatting might not display correctly in some email clients.