Click to See Complete Forum and Search --> : a top picture


chronicle
06-26-2002, 08:54 AM
Hi

quick question:
If you look at the code below the picture in the table is placed in the middle, but I want it to be placed in the top how can I do that?

<table width="100%" height="750" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="abc.jpg" width="40" height="20"></td>
</tr>
</table>

thanks

Tekime
06-26-2002, 09:10 AM
You can use <td valign="top">. Also the height attribute for tables is unsupported and deprecated; it could cause issues with certain browsers.

chronicle
06-26-2002, 09:58 AM
again thanks alot Tekime!