Home > Enterprise >  Inline CSS in HTML emails
Inline CSS in HTML emails

Time:08-11

What the best practice for styling an email campaign is. Should I be adding all of my inline CSS in the body? Or should I be Adding styles in my head and referencing them with classes?

I have already ruled out linking an external CSS document since most email clients do not support <link>.

CodePudding user response:

the best practice is to apply the style in head tag, since that have a styling hierarchy than the inline-CSS and this will make your code readable and clean, but also if you are using third party CSS library like tailwindCss you will be using the inline-styling so if not using any third party CSS library stick with inline

CodePudding user response:

Adding style in head tag. That best practice if u not using library like tailwind or bootstrap

  • Related