| Hey, there's sp aces in my ta ble! |
There are a few reasons why there may be spaces in your tables...
Change this:
<TD>
<IMG>
</TD>
To this:
<TD><IMG></TD>
Or, change this:
<TD>
<IMG>
<IMG>
<IMG>
</TD>
To this:
<TD><IMG><IMG><IMG></TD>
If you want to add carriage returns, do it within the tags themselves rather than between them:
<TD
property1="0"
property2="0"
property3="0"><IMG
attribute1="0"
attribute2="0"
attribute3="0"></TD>
Keep in mind that these things can be happening one at a time, or in combination. Also, even with these three direct causes eliminated, you may find that something else is causing the problem indirectly.
|
|