Creating visually appealing and responsive email campaigns can be challenging due to the varying levels of CSS support among different email clients. Therefore, designing html emails that are consistent across all platforms requires you to be aware of these differences in client capabilities.
This guide will talk about the different CSS elements and their compatibility across various email clients, including their browser, desktop, and mobile applications.
<style>
and <link>
elements
Browser
Feature | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
<style> in <head> |
βοΈ | βοΈ | βοΈ | βοΈ |
<style> in <body> |
βοΈ | βοΈ | β | βοΈ |
<link> in <head> |
β | β | β | β |
<link> in <body> |
β | β | β | β |
Desktop
Feature | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
<style> within <head> |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
<style> within <body> |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
<link> within <head> |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
<link> within <body> |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
Mobile
Feature | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
<style> within <head> |
βοΈ | βοΈ | βοΈ | β |
<style> within <body> |
βοΈ | βοΈ | βοΈ | β |
<link> within <head> |
βοΈ | βοΈ | βοΈ | β |
<link> within <body> |
βοΈ | βοΈ | βοΈ | β |
Element selectors
Browser
Selector | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
* |
β | β | βοΈ | β |
E |
βοΈ | βοΈ | βοΈ | βοΈ |
E[$attribute] |
β | β | β | βοΈ |
E[$attribute="$value"] |
β | β | β | βοΈ |
E F |
βοΈ | βοΈ | βοΈ | βοΈ |
E > F |
β | βοΈ | βοΈ | β |
E + F |
β | βοΈ | βοΈ | βοΈ |
E ~ F |
β | β | βοΈ | βοΈ |
E:link |
βοΈ | β | β | βοΈ |
E:visited |
βοΈ | βοΈ | β | β |
E:active |
βοΈ | βοΈ | β | βοΈ |
E:hover |
βοΈ | βοΈ | Only in webmail | βοΈ |
E:focus |
β | β | β | β |
E:target |
β | β | β | β |
E:nth-child(n) |
β | β | β | βοΈ |
E:nth-last-child(n) |
β | β | β | βοΈ |
E:nth-of-type(n) |
β | β | β | βοΈ |
E:nth-last-of-type(n) |
β | β | β | βοΈ |
E:first-child |
β | β | β | βοΈ |
E:last-child |
β | β | β | βοΈ |
E:first-of-type |
β | β | β | βοΈ |
E:last-of-type |
β | β | β | βοΈ |
E::first-line |
β | βοΈ | β | βοΈ |
E::first-letter |
β | βοΈ | β | βοΈ |
E::before |
β | β | β | βοΈ |
E::after |
β | β | β | βοΈ |
E.classname |
β | βοΈ | β | βοΈ |
E#id |
β | βοΈ | β | βοΈ |
E:not(s) |
β | β | β | βοΈ |
Desktop
Selector | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
* |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
E[$attribute] |
β | β | βοΈ | βοΈ | βοΈ |
E[$attribute="$value"] |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E F |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
E > F |
β | β | βοΈ | βοΈ | βοΈ |
E + F |
β | β | βοΈ | βοΈ | βοΈ |
E ~ F |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E:link |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
E:visited |
βοΈ | β | β | βοΈ | β |
E:active |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E:hover |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E:focus |
β | β | βοΈ | β | β |
E:target |
β | β | β | β | β |
E:nth-child(n) |
β | β | βοΈ | β | βοΈ |
E:nth-last-child(n) |
β | β | βοΈ | β | βοΈ |
E:nth-of-type(n) |
β | β | βοΈ | β | βοΈ |
E:nth-last-of-type(n) |
β | β | βοΈ | β | βοΈ |
E:first-child |
β | βοΈ | βοΈ | βοΈ | βοΈ |
E:last-child |
β | β | βοΈ | β | βοΈ |
E:first-of-type |
β | β | βοΈ | β | βοΈ |
E:last-of-type |
β | β | βοΈ | β | βοΈ |
E::first-line |
β | βοΈ | βοΈ | β | βοΈ |
E::first-letter |
β | βοΈ | βοΈ | β | βοΈ |
E::before |
β | β | βοΈ | β | βοΈ |
E::after |
β | β | βοΈ | β | βοΈ |
E.classname |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
E#id |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
E:not(s) |
β | β | βοΈ | β | βοΈ |
Mobile
Selector | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
* |
βοΈ | βοΈ | βοΈ | βοΈ |
E |
βοΈ | βοΈ | βοΈ | βοΈ |
E[$attribute] |
βοΈ | βοΈ | βοΈ | β |
E[$attribute="$value"] |
βοΈ | βοΈ | βοΈ | β |
E F |
βοΈ | βοΈ | βοΈ | βοΈ |
E > F |
βοΈ | βοΈ | βοΈ | βοΈ |
E + F |
βοΈ | βοΈ | βοΈ | βοΈ |
E ~ F |
βοΈ | βοΈ | βοΈ | βοΈ |
E:link |
βοΈ | βοΈ | βοΈ | β |
E:visited |
βοΈ | βοΈ | βοΈ | β |
E:active |
β | β | β | β |
E:hover |
β | β | β | Only in Android |
E:focus |
βοΈ | β | β | β |
E:target |
β | β | β | β |
E:nth-child(n) |
βοΈ | βοΈ | βοΈ | β |
E:nth-last-child(n) |
βοΈ | βοΈ | βοΈ | β |
E:nth-of-type(n) |
βοΈ | βοΈ | βοΈ | β |
E:nth-last-of-type(n) |
βοΈ | βοΈ | βοΈ | β |
E:first-child |
βοΈ | βοΈ | βοΈ | β |
E:last-child |
βοΈ | βοΈ | βοΈ | β |
E:first-of-type |
βοΈ | βοΈ | βοΈ | β |
E:last-of-type |
βοΈ | βοΈ | βοΈ | β |
E::first-line |
βοΈ | βοΈ | βοΈ | β |
E::first-letter |
βοΈ | βοΈ | βοΈ | β |
E::before |
βοΈ | βοΈ | βοΈ | β |
E::after |
βοΈ | βοΈ | βοΈ | β |
E.classname |
βοΈ | βοΈ | βοΈ | βοΈ |
E#id |
βοΈ | βοΈ | βοΈ | βοΈ |
E:not(s) |
βοΈ | βοΈ | βοΈ | β |
Box model
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
border |
βοΈ | βοΈ | βοΈ | βοΈ |
border-radius [CSS3] |
βοΈ | β | βοΈ | βοΈ |
box-shadow [CSS3] |
βοΈ | β | β | βοΈ |
height |
βοΈ | βοΈ | βοΈ | βοΈ |
margin |
β | βοΈ | βοΈ | βοΈ |
padding |
βοΈ | βοΈ | βοΈ | βοΈ |
width |
βοΈ | βοΈ | βοΈ | βοΈ |
max-width |
Partial IE support | Partial IE support | Partial IE support | Partial IE support |
min-width |
Partial IE support | Partial IE support | Partial IE support | Partial IE support |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
border |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
border-radius [CSS3] |
β | β | βοΈ | β | βοΈ |
box-shadow [CSS3] |
β | β | β | β | β |
height |
β | βοΈ | βοΈ | βοΈ | βοΈ |
margin |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
padding |
Partial element support | βοΈ | βοΈ | βοΈ | βοΈ |
width |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
max-width |
β | β | βοΈ | β | βοΈ |
min-width |
β | β | βοΈ | β | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
border |
βοΈ | βοΈ | βοΈ | βοΈ |
border-radius [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ |
box-shadow [CSS3] |
β | β | β | β |
height |
βοΈ | βοΈ | βοΈ | βοΈ |
margin |
βοΈ | βοΈ | βοΈ | βοΈ |
padding |
βοΈ | βοΈ | βοΈ | βοΈ |
width |
βοΈ | βοΈ | βοΈ | βοΈ |
max-width |
βοΈ | βοΈ | βοΈ | βοΈ |
min-width |
βοΈ | βοΈ | βοΈ | βοΈ |
Tables
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
border-collapse |
βοΈ | βοΈ | βοΈ | βοΈ |
border-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
caption-side |
βοΈ | βοΈ | βοΈ | βοΈ |
empty-cells |
βοΈ | βοΈ | βοΈ | βοΈ |
table-layout |
βοΈ | βοΈ | βοΈ | βοΈ |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
border-collapse |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
border-spacing |
β | β | βοΈ | β | βοΈ |
caption-side |
β | β | β | β | βοΈ |
empty-cells |
β | β | βοΈ | β | βοΈ |
table-layout |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
border-collapse |
βοΈ | βοΈ | βοΈ | βοΈ |
border-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
caption-side |
β | βοΈ | βοΈ | βοΈ |
empty-cells |
βοΈ | βοΈ | βοΈ | βοΈ |
table-layout |
βοΈ | βοΈ | βοΈ | βοΈ |
Fonts
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
direction |
βοΈ | βοΈ | βοΈ | βοΈ |
font |
βοΈ | βοΈ | βοΈ | βοΈ |
font-family |
βοΈ | βοΈ | βοΈ | βοΈ |
font-style |
βοΈ | βοΈ | βοΈ | βοΈ |
font-variant |
βοΈ | βοΈ | βοΈ | βοΈ |
font-size |
βοΈ | βοΈ | βοΈ | βοΈ |
font-weight |
βοΈ | βοΈ | βοΈ | βοΈ |
letter-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
line-height |
βοΈ | βοΈ | βοΈ | βοΈ |
text-align |
βοΈ | βοΈ | βοΈ | βοΈ |
text-decoration |
βοΈ | βοΈ | βοΈ | βοΈ |
text-indent |
βοΈ | βοΈ | βοΈ | βοΈ |
text-overflow [CSS3] |
Partial property support | Partial property support | Partial property support | Partial property support |
text-shadow [CSS3] |
βοΈ | βοΈ | β | No IE support |
text-transform |
βοΈ | βοΈ | βοΈ | βοΈ |
white-space |
βοΈ | βοΈ | βοΈ | βοΈ |
word-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
word-wrap [CSS3] |
βοΈ | βοΈ | β | βοΈ |
vertical-align |
βοΈ | βοΈ | βοΈ | βοΈ |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
direction |
β | βοΈ | βοΈ | βοΈ | βοΈ |
font |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
font-family |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
font-style |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
font-variant |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
font-size |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
font-weight |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
letter-spacing |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
line-height |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
text-align |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
text-decoration |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
text-indent |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
text-overflow [CSS3] |
β | βοΈ | βοΈ | βοΈ | βοΈ |
text-shadow [CSS3] |
β | β | βοΈ | β | βοΈ |
text-transform |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
white-space |
βοΈ | β | βοΈ | βοΈ | βοΈ |
word-spacing |
β | βοΈ | βοΈ | βοΈ | βοΈ |
word-wrap [CSS3] |
β | βοΈ | βοΈ | βοΈ | βοΈ |
vertical-align |
β | βοΈ | βοΈ | βοΈ | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
direction |
βοΈ | βοΈ | βοΈ | βοΈ |
font |
βοΈ | βοΈ | βοΈ | βοΈ |
font-family |
βοΈ | βοΈ | βοΈ | βοΈ |
font-style |
βοΈ | βοΈ | βοΈ | βοΈ |
font-variant |
βοΈ | βοΈ | βοΈ | βοΈ |
font-size |
βοΈ | βοΈ | βοΈ | βοΈ |
font-weight |
βοΈ | βοΈ | βοΈ | βοΈ |
letter-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
line-height |
βοΈ | βοΈ | βοΈ | βοΈ |
text-align |
βοΈ | βοΈ | βοΈ | βοΈ |
text-decoration |
βοΈ | βοΈ | βοΈ | βοΈ |
text-indent |
βοΈ | βοΈ | βοΈ | βοΈ |
text-overflow [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ |
text-shadow [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ |
text-transform |
βοΈ | βοΈ | βοΈ | βοΈ |
white-space |
βοΈ | βοΈ | βοΈ | βοΈ |
word-spacing |
βοΈ | βοΈ | βοΈ | βοΈ |
word-wrap [CSS3] |
βοΈ | βοΈ | βοΈ | β |
vertical-align |
βοΈ | βοΈ | βοΈ | βοΈ |
Color and Background
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
color |
βοΈ | βοΈ | βοΈ | βοΈ |
background |
No image support | βοΈ | βοΈ | βοΈ |
background-color |
βοΈ | βοΈ | βοΈ | βοΈ |
background-image |
βοΈ | βοΈ | βοΈ | βοΈ |
background-position |
βοΈ | βοΈ | βοΈ | βοΈ |
background-repeat |
βοΈ | βοΈ | βοΈ | βοΈ |
HSL Colors [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ |
HSLA Colors [CSS3] |
β | β | β | No IE support |
Opacity [CSS3] |
βοΈ | β | β | No IE support |
RGBA Colors [CSS3] |
β | β | β | No IE support |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
color |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
background |
No image support | βοΈ | βοΈ | βοΈ | βοΈ |
background-color |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
background-image |
β | βοΈ | βοΈ | βοΈ | βοΈ |
background-position |
β | βοΈ | βοΈ | βοΈ | βοΈ |
background-repeat |
β | βοΈ | βοΈ | βοΈ | βοΈ |
HSL Colors [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
HSLA Colors [CSS3] |
β | β | βοΈ | β | βοΈ |
Opacity [CSS3] |
β | β | βοΈ | β | βοΈ |
RGBA Colors [CSS3] |
β | β | βοΈ | β | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
color |
βοΈ | βοΈ | βοΈ | βοΈ |
background |
βοΈ | βοΈ | βοΈ | βοΈ |
background-color |
βοΈ | βοΈ | βοΈ | βοΈ |
background-image |
βοΈ | βοΈ | βοΈ | βοΈ |
background-position |
βοΈ | βοΈ | βοΈ | βοΈ |
background-repeat |
βοΈ | βοΈ | βοΈ | βοΈ |
HSL Colors [CSS3] |
βοΈ | βοΈ | βοΈ | βοΈ |
HSLA Colors [CSS3] |
βοΈ | βοΈ | βοΈ | β |
Opacity [CSS3] |
βοΈ | βοΈ | βοΈ | β |
RGBA Colors [CSS3] |
βοΈ | βοΈ | βοΈ | β |
Positioning and display
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
bottom |
βοΈ | β | β | βοΈ |
clear |
βοΈ | βοΈ | βοΈ | βοΈ |
clip |
β | β | β | βοΈ |
cursor |
βοΈ | βοΈ | β | βοΈ |
display |
βοΈ | βοΈ | βοΈ | βοΈ |
float |
β | βοΈ | βοΈ | βοΈ |
left |
β | β | β | βοΈ |
opacity |
βοΈ | β | βοΈ | βοΈ |
outline [CSS3] |
Partial support | Partial support | Partial support | Partial support |
overflow |
Partial property support | Partial property support | Partial property support | βοΈ |
position |
βοΈ | β | β | βοΈ |
resize [CSS3] |
βοΈ | βοΈ | β | βοΈ |
right |
βοΈ | β | β | βοΈ |
top |
βοΈ | β | β | βοΈ |
visibility |
βοΈ | βοΈ | β | βοΈ |
z-index |
β | β | β | βοΈ |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
bottom |
β | βοΈ | βοΈ | βοΈ | βοΈ |
clear |
β | βοΈ | βοΈ | βοΈ | βοΈ |
clip |
β | βοΈ | βοΈ | βοΈ | βοΈ |
cursor |
β | βοΈ | βοΈ | βοΈ | βοΈ |
display |
β | βοΈ | βοΈ | βοΈ | βοΈ |
float |
β | βοΈ | βοΈ | βοΈ | βοΈ |
left |
β | βοΈ | βοΈ | βοΈ | βοΈ |
opacity |
β | β | βοΈ | β | βοΈ |
outline [CSS3] |
β | β | βοΈ | β | βοΈ |
overflow |
β | βοΈ | βοΈ | βοΈ | βοΈ |
position |
β | βοΈ | βοΈ | βοΈ | βοΈ |
resize [CSS3] |
β | βοΈ | βοΈ | β | βοΈ |
right |
β | βοΈ | βοΈ | βοΈ | βοΈ |
top |
β | βοΈ | βοΈ | βοΈ | βοΈ |
visibility |
β | βοΈ | βοΈ | βοΈ | βοΈ |
z-index |
βοΈ | βοΈ | βοΈ | βοΈ | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
bottom |
βοΈ | βοΈ | βοΈ | β |
clear |
βοΈ | βοΈ | βοΈ | βοΈ |
clip |
βοΈ | βοΈ | βοΈ | β |
cursor |
βοΈ | β | β | β |
display |
βοΈ | βοΈ | βοΈ | βοΈ |
float |
βοΈ | βοΈ | βοΈ | βοΈ |
left |
βοΈ | βοΈ | βοΈ | β |
opacity |
βοΈ | βοΈ | βοΈ | βοΈ |
outline [CSS3] |
βοΈ | βοΈ | βοΈ | β |
overflow |
βοΈ | Partial property support | Partial property support | Partial property support |
position |
βοΈ | βοΈ | βοΈ | β |
resize [CSS3] |
βοΈ | β | β | β |
right |
βοΈ | βοΈ | βοΈ | β |
top |
βοΈ | βοΈ | βοΈ | β |
visibility |
βοΈ | βοΈ | βοΈ | β |
z-index |
βοΈ | βοΈ | βοΈ | β |
Lists
Browser
Property | Outlook | Yahoo! | Gmail | AOL |
---|---|---|---|---|
list-style-image |
β | βοΈ | β | βοΈ |
list-style-position |
β | βοΈ | βοΈ | βοΈ |
list-style-type |
βοΈ | βοΈ | βοΈ | βοΈ |
Desktop
Property | Outlook 2007 - 2013 | Outlook 2000 - 2003 | Apple Mail | Windows Live Mail | Outlook For Mac |
---|---|---|---|---|---|
list-style-image |
β | βοΈ | βοΈ | βοΈ | βοΈ |
list-style-position |
β | βοΈ | βοΈ | βοΈ | βοΈ |
list-style-type |
β | βοΈ | βοΈ | βοΈ | βοΈ |
Mobile
Property | iOS 6 | Android 4.2 | Android 2.3 | Gmail App |
---|---|---|---|---|
list-style-image |
βοΈ | βοΈ | βοΈ | β |
list-style-position |
βοΈ | βοΈ | βοΈ | βοΈ |
list-style-type |
βοΈ | βοΈ | βοΈ | β |
Conclusion
Email design is both an art and a science. To create emails that render correctly and consistently across all recipientsβ devices, it is important to keep yourself updated about CSS support across email clients and their browser, desktop, and mobile applications. By designing with these considerations in mind, you can enhance the performance of your email marketing campaigns and reach your target audience more effectively.