styling tr or td in emails?
问题 I want to change whole row cells background-color and font-size. (with inline-styles , because I can't use stylesheets or <style> tag) Which element should I add these styles? I should add them on each <td> in one row or once for <tr> tag? which way is better? <tr> <td style="background-color:red;font-size:12px">blah blah</td> <td style="background-color:red;font-size:12px">blah blah</td> </tr> or <tr style="background-color:red;font-size:12px"> <td>blah blah</td> <td>blah blah</td> </tr> 回答1