View Full Version : Tables in Tables


eva_pria
03-12-2007, 07:55 PM
How can I put a table inside another table? Is that even possible? If it isn't, then is there another way I could do what I wanna do, thanks :)

bye xxx :waves:

amyaurora
03-12-2007, 08:11 PM
http://www.lissaexplains.com/tables.shtml#nest

eva_pria
03-13-2007, 04:45 PM
I dont understand..

acktacky
03-13-2007, 08:48 PM
Basically the link is telling you that you can nest tables. As long as you put the nesting table within a <td> of the table you're nesting in.

So...

<table> (Your table opener)
<tr> (table row opener)
<td> (table data opener) <--- All of this is your FIRST table which you are going to nest INTO

<table>
<tr>
<td> <-- All of this is your SECOND table which you are nesting INTO the first FIRST table
</td>
</tr>
</table> <-- All of this is the ending of your NESTING table, or your second table

</td>
</tr>
</table> <-- All of this is the ending of your NESTED table, or your first table