表格单元格的Outlook CSS背景颜色

问题描述 投票:1回答:2

以下简单的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-colorfont-weight

css outlook css-selectors
2个回答
0
投票

表中背景颜色的WC3标准为bgcolor(不推荐使用,background] >>

td:first-child {bgcolor:#FFDAB9; background:#FFDAB9;}

0
投票

由于Outlook使用Word呈现电子邮件,因此CSS支持非常有限,您可以在此网站喜欢:Campagign Monitor表示Outlook 2016不支持:first-child CSS选择器。

© www.soinside.com 2019 - 2024. All rights reserved.