hello, let's say I have an example table with two colomns and some text in both. like the below one
Whenever I add content in the right column and the table height increases, the text in the left column goes down.Code:<table width="204" border="1" cellspacing="0" cellpadding="0" align="center"> <tr> <td height="10" width="50%"><p>text1</p><p>&nbsp;</p></td> <td height="10" width="50%"><p>text2</p><p>&nbsp;</p></td> </tr></table>
Example: If I add a paragraph in the right column:
the cotent in the left goes down.Code:<table width="204" border="1" cellspacing="0" cellpadding="0" align="center"> <tr> <td height="10" width="50%"><p>text1</p><p>&nbsp;</p></td> <td height="10" width="50%"><p>text2</p><p>&nbsp;</p><p>&nbsp;</p></td> </tr></table>
This is obvious, but is there anythig I can do to avoid the content in the left column to go down?
I have this problem because I have dynamic content generated in the right column and therefore it is impossible for me to know the height of the table each time.
thank you





Bookmarks