email html

2
I've got an email with a table in the html body and it works great except the table styling carries to every table element on the form and hangs on when the email is sent. Is there a tag I'm missing or something I can add to prevent it? Thanks!!
asked
1 answers
2

You should be able to solve this using a class instead of directly targeting the "table" tag. Something like this:

<style>
.myTable, .myTable th, .myTable td {
     *styling here*
}
</style>

Then in your body:

<table class="myTable">

Doing this will ensure that your CSS is specific only to the tag you've created here, rather than your whole page.

answered