Verfasst: 16.02.2009, 20:53
Eine Höhe wird im HTML immer ohne px angegeben. Wenn dann muss man angeben style=\"height: 40px\" und die Angabe height=\"40\" weglassen.
https://board.superscripte.de/
Code: Alles auswählen
<table border="0" cellspacing="0" cellpadding="0" color="#e9dcaf">
<tr>
<td colspan="3" height="13px">
<img src="/mail/9.jpg" alt="" />
</td>
</tr>
Code: Alles auswählen
<table cellspacing="0" cellpadding="0" bgcolor="#e9dcaf" border="0">
<tr>
<td colspan="3" height="13">
<img alt="alt" src="/mail/9.jpg">
</td>
</tr>