Computer Science, asked by khanazam7991, 1 year ago

Is it possible to insert a table within another table? (html)?

Answers

Answered by MyselfAbhi
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>

:)
Similar questions