I was wondering if using table inside a td (another table inside a table) a good practice or is it a strict no-no, talking in terms of xHTML.
<table>
<tr>
<td>ABC</td>
<td>1438</td>
<td>graph</td>
<td>holiday</td>
<td>
<!--Sub Table -->
<table>
<tr>
<td>Subtable col1</td>
<td>Subtable col2</td>
</tr>
</table>
</td>
</tr>
<table>