3

是否有可用的服务将基于类的样式更改为内联样式。我需要设计一封电子邮件,并且使用类更容易和更快,但是最后必须将所有内容更改为内联样式。似乎应该有一个程序可以做到这一点,但我似乎找不到任何东西。

  <table class="g">
    <tr>
        <td>
            <p>
                content should be bright green
            </p>
            <span>
                content should be red and bold
            </span>
        </td>
    </tr>
</table>
<style>
table.g p{
    color:#3f0;
}
table.g span{
    color:#f00;
    font-weight:bold;
}
</style>

这可以自动更改为

<table>
    <tr>
        <td>
          <p style="color:#3f0;">
                content should be bright green
            </p>
            <span style="color:#f00;font-weight:bold;">
                 content should be red and bold
            </span>
        </td>
    </tr>
</table>

使用某种了解 CSS 规则如何应用并可以自动转换它们的软件?

*用javascript和jquery标记,以防有办法使用它。

4