Design best practices

Emails don’t need to look the same in every email client, but there are some best practices and guidelines to keep in mind to make sure they are consistently designed, render properly in email clients, and are as accessible as possible.

Given Stack Overflow’s reach, we strive to support email clients with low levels of HTML & CSS support (namely Microsoft Outlook, a few versions of Gmail, and a handful of mostly non-US clients). Less than 1% of a mailing list can still mean a few thousand users, so it’s safest to code emails like it’s 1999.

  • CSS2 instead of CSS3
  • Tables instead of Divs
  • PNGs instead of SVGs
  • Inline CSS instead of embedded styles or stylesheets
  • HTML text instead of images containing text

Can I Email? and Campaign Monitor’s guide to CSS are good references for HTML & CSS support in email.

  1. Use <table border="0" cellpadding="0" cellspacing="0" role="presentation"> when creating new tables. This negates any unwanted spacing and borders and tells screen readers to skip over the table’s tags and move straight into the content.
  2. When in doubt, nest another table. For finer control of your HTML, try nesting tables when building emails.
  3. Use padding for spacing in table cells. Margins aren’t fully supported on tables and container elements.
  4. Use margin for typography. Margins are fully supported for headline, paragraph, and list tags.
  5. HTML Attributes Most styling is done via CSS. But because some email clients use antiquated rendering engines, they tend to better understand attributes like align, valign, height, and width.
  6. Use align for layout instead of float, d-flex, or flexbox Floats aren’t supported in Outlook and the others don’t have good support in general.
  7. Define color as #ffffff instead of #fff or rgb(1,2,3). Six-digit hex is supported in inline CSS as well as HTML attributes like bgcolor that are still supported in email.
  8. Don’t forget about preview text. We can specify the text that appears beneath subject lines in many email clients. If preview text is not included, this space will be populated by the email’s content.
  1. Save images as PNG, GIF, or JPG instead of SVG. SVG has almost no support in email, no matter how it’s referenced (inline, Base64, .svg).
  2. Save images as @2x and scale them down using HTML attributes. Since SVG isn’t supported, a 20x20 raster image coded like <img src="40x40-image.png" height="20" width="20"> displays crisply on high-definition screens.
  1. Include role="presentation" on all tables used for layout. This prevents screen readers from reading aloud the structure of each table cell.
  2. Use HTML1 semantic tags whenever possible. Tags like <p> and <h> allow screen readers to quickly jump from section to section. Tags like <strong> and <em> give text more importance.
  3. Include an alt attribute on every image. Be descriptive and use alt to help readers “see” the email if images aren’t displayed. Use an empty alt="" for images a screen reader should skip (eg. decorative images). Screenreaders will dictate the filename of images without an alt attribute (eg. "icon dash checkmark dot png"). More on alt text.
  4. Avoid “Click Here” or “Learn More” link copy. It helps us avoid spam filters and gives context about the link to folks using screen readers or dictation software. We have some copy guidelines for buttons and links.
  5. Create a plain text version of every email. It helps us avoid spam filters, some email clients don’t support HTML, and some people just prefer plain text. They also respond better to things like changing font size, family, and color, and work well with screen magnifiers. We don’t have many rules or guidelines for formatting plain text emails, though they typically look something like this. Our email service providers have tools to convert HTML email to plain text.

Tools to ensure emails look as they should when they’re sent.

Litmus allows us to preview screenshots of our emails across 90+ email clients on multiple devices. Builder and Checklist are particularly handy for troubleshooting bugs and circulating email code.

Papercut allows us to test emails from our code base. Good for making sure templates are built properly, personalized data populates, and email triggers work.

Deploys by Netlify