Mritunjay Upadhyay
Mritunjay Upadhyay

Reputation: 1094

Css variable in Email Template

I am making an email template and facing many issue in css. Is it a good idea to use css variable in email.

For example

:root {
  --main-bg-color: pink;
 }

 td {
  background-color: var(--main-bg-color);
 }

Is it going to break in some condition ? Should I avoid css variable in email template ?

Thank you

Upvotes: 7

Views: 4111

Answers (1)

G3ck
G3ck

Reputation: 252

It is better not to use css variables in email messages. Css variables are not supported in many web browsers.

Summary

For e-mail clients, it's even worse.

what I know, only a few modern email clients can handle css variables.

Upvotes: 7

Related Questions