php class to inline css styles?

后端 未结 7 2185
难免孤独
难免孤独 2021-02-14 04:21

I was over at MailChimp\'s css inliner http://www.mailchimp.com/labs/inlinecss.php and I was wondering if there are any classes out there that can do this, I\'d love to have it

相关标签:
7条回答
  • 2021-02-14 04:50

    Emogrifier did not work for me, so I have developed this: https://github.com/djfm/cssin. I've tried several other libs and none worked on my HTML files, my lib is pretty OK I think.

    0 讨论(0)
  • 2021-02-14 04:53

    You can try Premailer. The source is available on Github. (Just noticed your tag is PHP and Premailer is Ruby, so this might not count as a real answer for you...)

    0 讨论(0)
  • 2021-02-14 05:03

    Pure PHP solution: https://github.com/tijsverkoyen/CssToInlineStyles (used by laravel).

    tijsverkoyen/css-to-inline-styles if using composer.

    0 讨论(0)
  • 2021-02-14 05:06

    How's this?

    https://www.myintervals.com/emogrifier.php

    "... Emogrifier automagically transmogrifies your HTML by parsing your CSS and inserting your CSS definitions into tags within your HTML based on your CSS selectors. You can either use the form below to paste your HTML or CSS, or if you're more technically inclined, you can download the PHP source code and use it in your own applications. "

    0 讨论(0)
  • 2021-02-14 05:14

    I was looking for the same thing tonight and I found this library https://github.com/christiaan/InlineStyle ,which does what I think you want.

    It even understand selectors like ul > li and such.

    0 讨论(0)
  • 2021-02-14 05:14

    I was looking for the same thing (PHP based, downloadable, open source), but couldn't find it, so I created the following proxy/wrapper for the open source ruby library: https://github.com/onassar/PHP-Premailer

    Hope it's helpful.

    0 讨论(0)
提交回复
热议问题