colors - bgcolor on td or tr table element - html email -
i want minimise bloat on html email inline styles retain client support possible, wondering which better apply bgcolor too.
each <td> there's lot of bloat
<tr> <td bgcolor="#000000"></td> <td bgcolor="#000000"></td> </tr> or
parent <tr> minimises supported?
<tr bgcolor="#00000"> <td></td> <td></td> </tr> from short testing sibling <td>'s inherit colour wondering support has. following article mentions background colours doesn't mention <tr> element.
tr apply background color each td element highly supported. tr used determining odd or background color well.
<tr class="${(c % 2) == 0 ? 'even' : 'odd'}"> <tr> tag defines row in html table. <tr> element contains 1 or more <th> or <td> elements. color can applied row using bgcolor. bgcolor rgb(x,x,x) #xxxxxx colorname not supported in html5. specifies background color table row
Comments
Post a Comment