Is it possible to insert a table within another table? (html)?
Answers
Answered by
1
Heya!
Yes you can insert a table within a table. This is called NESTED TABLE.
For example-
<table>
<tr>
<td>
<table>
<tr><td></td><td></td></tr>
</table>
</td>
</tr>
</table>
:)
Yes you can insert a table within a table. This is called NESTED TABLE.
For example-
<table>
<tr>
<td>
<table>
<tr><td></td><td></td></tr>
</table>
</td>
</tr>
</table>
:)
Similar questions