How to add HTML table tr inside td?

Spread the love

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.

Leave a Reply

Your email address will not be published. Required fields are marked *