有什么方法可以将块样式/ CSS转换为内联CSS吗?

时间:2015-09-29 20:36:20

标签: html css gmail

我正在编写要为Gmail和其他邮件触发的HTML / CSS电子邮件模板。但是,Gmail不会加载<style>块,因此我必须使用内联式&#39;样式&#39;使其有效的属性。

说明问题:

<style>
    .center {
        text-align:center;
    }
</style>
<a class="center"> text </a>

转换为:

<a class="center" style="text-align:center;"> text </a>

这里有没有人知道更好的方法或任何程序吗?

2 个答案:

答案 0 :(得分:3)

有一个专为此工作而设计的网络应用程序。

  

将CSS规则转换为内联样式属性

https://inlinestyler.torchbox.com/

答案 1 :(得分:2)

docstring是生成内联样式和准备电子邮件代码的绝佳工具。

您甚至可以使用Premailergrunt将其集成到任务选手中。