How to create nest tables within tables in HTML?

Answer Posted / chaitu

We can create nest table i.e. table inside a table. To create table we use following attributes:

<table>……</table>: declare starting and ending of table.

<tr>…</tr>: declare table row.

<td>…</td>: table data.

<table>

<tr>

<td>first cell of the outer table</td>

<td>second cell of the outer table,

creating second table inside the first table

<table>

<tr>

<td>first cell of the second table</td>

<td>second cell of the second table</td>

</tr>

</table>

</td>

</tr>

</table>

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

No New Questions to Answer in this Category !!    You can

Post New Questions

Answer Questions in Different Category