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