Nested Tables I think

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a webpage I would like to use tables so that the page looks nice and
neat.

I created a table with 2 columns and 1 row. In the first column to the left
I inserted a table with 5 rows 1 column. Now that I go to the second column
of the original table I created the cursor is in the middle of the column and
when I try to create a table here the table appears in the middle of the
column.

Please advise how I could get both tables to line up at the top of each
column.
 
Make the table structure resemble this:
<table>
<tr>
<td valign="top>
<table>
....
</table>
</td>
<td valign="top">
<table>
....
</table>
</td>
</tr>
</table>
 
Back
Top