Forum Moderators: open

Message Too Old, No Replies

Cell resize on IE not looking good

cell resize problem

         

jalex85

8:17 pm on Jun 12, 2009 (gmt 0)

10+ Year Member



Hello.

I have a table of 2 columns. In column 1 I have text links, column 2 is the main information.

The problem is that column 2 will host php content that may change it's height.

I found that on Internet Explorer column 1 will change it's height too and links will not be at the top of the row but in the middle.

Here is the html code:

<table width="895" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="208">text links will be here</td>
<td width="687" colspan="3" rowspan="2" bgcolor="#FFFFFF">this is the main information section</td>
</tr>
<tr>
<td>image will go here</td>
</tr>
</table>

Any ideas on how to lock cell 1 of column 1 so that the links are at the top?

tedster

9:25 pm on Jun 12, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hello jalex85, and welcome to the forums.

Try this:

<td width="208" style="vertical-align:top>text links will be here</td>

...or

<td width="208" valign="top">text links will be here</td>

jalex85

3:58 am on Jun 13, 2009 (gmt 0)

10+ Year Member



It works perfectly!

I truly appreciate your help! =)