以下简单的CSS在多个邮件客户端中都可以使用,但是颜色和字体粗细不会在Outlook 2016中应用。
<style type="text/css">
table {width: 100%}
td:first-child {background-color: #FFDAB9 ; width: 17%; font-weight:bold}
</style>
宽度设置是被接受,因此得出结论,支持first-child
伪类。
如何控制background-color
和font-weight
?
表中背景颜色的WC3标准为bgcolor(不推荐使用,background] >>
td:first-child {bgcolor:#FFDAB9; background:#FFDAB9;}
由于Outlook使用Word呈现电子邮件,因此CSS支持非常有限,您可以在此网站喜欢:Campagign Monitor表示Outlook 2016不支持:first-child
CSS选择器。