Styling HTML email for Gmail(为 Gmail 设置 HTML 电子邮件样式)
问题描述
我正在生成使用内部样式表的 html 电子邮件,即
I'm generating a html email that uses an internal stylesheet, i.e.
<!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 忽略了除内联规则之外的所有样式,例如
When viewed in Gmail it seems all the styles in the internal stylesheet are ignored. It seems Gmail ignores all styles other than inline rules, e.g.
<h2 style="color: red">Email content here</foo>
这是我在使用 Gmail 查看时设置 HTML 电子邮件样式的唯一选择吗?
Is this my only option for styling HTML emails when viewed with Gmail?
推荐答案
截至 2016 年 9 月 30 日,此处的答案已过时.Gmail 目前是 推出对 style
标签的支持>head,以及媒体查询.如果您只关心 Gmail,那么您可以像现代开发人员一样安全地使用课程!
The answers here are outdated, as of today Sep 30 2016. Gmail is currently rolling out support for the style
tag in the head
, as well as media queries. If Gmail is your only concern, you're safe to use classes like a modern developer!
作为参考,您可以查看官方 gmail CSS 文档强>.
For reference, you can check the official gmail CSS docs.
附带说明,Gmail 是唯一不支持 style
(参考,直到它们更新为止).这意味着您可以几乎安全地停止将样式内联.一些比较模糊的客户可能仍然需要它们.
As a side note, Gmail was the only major client that didn't support style
(reference, until they update anyway). That means you can almost safely stop putting styles inline. Some of the more obscure clients may still need them.
这篇关于为 Gmail 设置 HTML 电子邮件样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为 Gmail 设置 HTML 电子邮件样式
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01