Sometimes, we want to add HTML table tr inside td.
In this article, we’ll look at how to add HTML table tr inside td.
How to add HTML table tr inside td?
To add HTML table tr inside td, we add a full table inside the td.
For instance, we write
<table>
<tr>
<td>
<table>
<tr>
<td>...</td>
</tr>
</table>
</td>
</tr>
</table>
to add the table in the td element with the tr and td elements inside.
Conclusion
To add HTML table tr inside td, we add a full table inside the td.