以下简单的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
?
答案 0 :(得分:0)
表中背景颜色的WC3标准为bgcolor(已弃用)和background
td:first-child {bgcolor:#FFDAB9; background:#FFDAB9;}
答案 1 :(得分:0)
由于Outlook使用Word呈现电子邮件,因此CSS支持非常有限,
您可以在此网站上造访:Campagign Monitor表示Outlook {2016}不支持:first-child
CSS选择器。
要解决此问题,请尝试使用内联CSS样式或为您的HTML元素指定类名。
编码愉快!