HTML Email Design with Nested Tables -
why isn't text-decoration="none"
appearing properly? i've tried putting in different locations, such table
, tr
, td
, can't seem work. common mistakes in styling email designs? here code:
<table cellspacing="0" cellpadding="0" border="0" max-width="100%" width="600px" align="center"> <tr> <td> <table cellspacing="0" cellpadding="0" border="0" max-width="100%" align="center"> <tr> <td> <!-- header --> <table cellspacing="0" cellpadding="0" border="0" max-width="100%" align="center"> <tr align="center"> <td> <p>is email not displaying correctly? <a href="#" text-decoration="none">view email in web browser</p></a> </td> </tr> </table> <!-- end header --> </td> </tr> </table> </td> </tr> </table>
text-decoration
css property, not html attribute.
it has go in style sheet or a style
attribute.
this, among various other errors, picked if used a markup validator.
Comments
Post a Comment