Nested Tables I think

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.
 
R

Ronx

Make the table structure resemble this:
<table>
<tr>
<td valign="top>
<table>
....
</table>
</td>
<td valign="top">
<table>
....
</table>
</td>
</tr>
</table>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top