Link to home
Start Free TrialLog in
Avatar of yingkit
yingkit

asked on

How to align?

......
<tr>
<td><img src="test.gif" width="150" height="150"></td>
<td>The left image is blah blah blah blah</td>
</tr>
......
In Netscape, the texts crowded in the vertically middle of the cell.  How to align the texts in the right cell of the table to the TOP of the cell?
I tried the followings but ALL failed:
1) <td><align="top">The left image is blah blah blah blah</td>
2) <td align="top">The left image is blah blah blah blah</td>
Thanks.

PS.  The answer must be able to align the text in BOTH netscape and IE.
ASKER CERTIFIED SOLUTION
Avatar of ManoloMA
ManoloMA

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of webhornet
webhornet

<TD VALIGN="top">The left image is blah blah blah blah</TD>

must be the answer. it's an official html4-tag so it has to work in NE and IE.

WebHornet
Avatar of yingkit

ASKER

Sorry for rejecting.  I have to be fair as Manolo submitted the answer first.