We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is more question/feature-request.
I want to preserve the existing CSS selectors after running through the inliner, eg;
Before
<html> <head> <style> .my-class { color: red; } </style> </head> <body> <p class="my-class">Test</p> </body> </html>
After
<html> <head> <style> .my-class { color: red; } </style> </head> <body> <p class="my-class" style="color: red;">Test</p> </body> </html>
So the my-class class is both inlined in the p element as well as preserved in the <style> header.
my-class
p
<style>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is more question/feature-request.
I want to preserve the existing CSS selectors after running through the inliner, eg;
Before
After
So the
my-class
class is both inlined in thep
element as well as preserved in the<style>
header.The text was updated successfully, but these errors were encountered: