I have three tables next to eachother in a table. But one of the tables are longer than the other ones. That results in that the two shorter tables got center verticaly.
How do I make all the tables to begin at the top?You need to set the vertical alignment of the containing cell, like this:
style="vertical-align: top"
Why are you using nested tables? There is almost always a better way.
AdamI can't get vertical-align: top to work.isn't there an option for tables to valign? like
<td valign="top">
Failing that, did you use adams solution like
<td style="vertical-align: top;"> ? Make sure it's on the table cell that contains these tables.
davemy misstake, I put it in wrong td. It works now.
Thanks for your help!
How do I make all the tables to begin at the top?You need to set the vertical alignment of the containing cell, like this:
style="vertical-align: top"
Why are you using nested tables? There is almost always a better way.
AdamI can't get vertical-align: top to work.isn't there an option for tables to valign? like
<td valign="top">
Failing that, did you use adams solution like
<td style="vertical-align: top;"> ? Make sure it's on the table cell that contains these tables.
davemy misstake, I put it in wrong td. It works now.
Thanks for your help!