Prevent style inlining with data-embed
masterTo prevent extract-css from inlining styles or removing a <style></style> tag, add the data-embed attribute to the tag. This is useful for preserving CSS selectors that email clients might need for specific hacks.
<style data-embed>
/* This style will not be inlined or removed */
.email-hack {
display: block !important;
}
</style>