admin管理员组文章数量:1344319
Is there a service available that will change class based styles to inline styles. I need to design an email and working with classes is by far easier and faster, but everything then must be changed to inline styles in the end. It seems like there should be a program that can do this, but I can't seem to find anything.
<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>
Can this be automatically changed to
<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>
using some sort of software that understands how CSS rules are applied, and can automatically convert them?
*tagged with javascript and jquery in case there is a way to do this using that.
Is there a service available that will change class based styles to inline styles. I need to design an email and working with classes is by far easier and faster, but everything then must be changed to inline styles in the end. It seems like there should be a program that can do this, but I can't seem to find anything.
<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>
Can this be automatically changed to
<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>
using some sort of software that understands how CSS rules are applied, and can automatically convert them?
*tagged with javascript and jquery in case there is a way to do this using that.
Share Improve this question asked Mar 18, 2013 at 17:10 12527481252748 15.4k34 gold badges117 silver badges241 bronze badges 3-
Why can't you use classes with a
<style>
tag in<head>
? – jrummell Commented Mar 18, 2013 at 17:12 - 1 @jrummell Gmail ignores that. All styles that you care about in a email should be inline – AlessMascherpa Commented Mar 18, 2013 at 17:14
- 1 @jrummell I'm afraid it is. You can find a state of this problems for each email client in email-standards – AlessMascherpa Commented Mar 18, 2013 at 17:24
1 Answer
Reset to default 13- Webapp:
- http://beaker.mailchimp./inline-css
- Python:
- https://github./davecranwell/inline-styler
- https://github./rennat/pynliner
- https://github./peterbe/premailer (It changes relative paths in to absolute ones)
- PHP:
- https://github./tijsverkoyen/CssToInlineStyles
- https://github./christiaan/InlineStyle (Allow using external CSS stylesheets)
- Ruby:
- https://github./maca/inline-style
- https://github./purify/mail_style (corrects src attr in img tags)
- JavaScript:
- https://github./LearnBoost/juice
- https://npmjs/package/grunt-email-builder (Grunt.js plugin)
- https://github./jonkemp/gulp-inline-css (Gulp plugin)
- C#
- https://github./milkshakesoftware/PreMailer.Net
本文标签: javascriptChange class based styles to inline stylesStack Overflow
版权声明:本文标题:javascript - Change class based styles to inline styles - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794917a2540252.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论