1.

How Can Tables Be Made Nested In Html?

Answer»

Tables can be made nested by making it come in another table. This CONSISTS of many ATTRIBUTES and tags that can be used in nesting the tables.
<table>
<TR>
<td>this is the first CELL</td>
<td>this is the second cell</td>
<table> 
<tr>
<td>this is the first cell second table</td>
<td>this is the second cell of second table</td>
</tr>
<table>
</td>
</tr>
</table>

Tables can be made nested by making it come in another table. This consists of many attributes and tags that can be used in nesting the tables.
<table>
<tr>
<td>this is the first cell</td>
<td>this is the second cell</td>
<table> 
<tr>
<td>this is the first cell second table</td>
<td>this is the second cell of second table</td>
</tr>
<table>
</td>
</tr>
</table>



Discussion

No Comment Found