In some email clients, CSS instructions must be attached directly to the HTML tag for error-free display (i.e. inline). When using CSS-To-Inline, CSS properties are automatically written as inline styles into the corresponding tag during rendering.
To activate the function, the attribute transform="true" must be added to the desired <style> tag:
Example: CSS instructions
- <style type="text/css" transform="true">
- .font {
- font-family: Open Sans, Arial, sans-serif;
- }
- </style>
During rendering, these properties are written as inline style into the tag with the corresponding class.