我正在生成一个使用内部样式表的 html 电子邮件,即。
<!doctype html>
<html>
<head>
<style type="text/css">
h2.foo {color: red}
</style>
</head>
<body>
<h2 class="foo">Email content here</foo>
</body>
</html>
在 Gmail 中查看时,内部样式表中的所有样式似乎都被忽略了。Gmail 似乎忽略了除内联规则以外的所有样式,例如。
<h2 style="color: red">Email content here</foo>
这是我用 Gmail 浏览 HTML 电子邮件时唯一的样式选择吗?