Answers for "table within a table html"

4

table inside table html

<table>
    <tr>
        <td>
          	<table>
                <tr>
                    <td>Nested 1</td>
                    <td>Nested 2</td>
                </tr>
        	</table>
      	</td>
    </tr>
    <tr>
        <td>Lipsum...</td>
    </tr>
</table>
Posted by: Guest on September-05-2021
0

table inside another table in html

<table width="100%">
 <tr>
  <td>Name 1</td>
  <td>Name 2</td>
  <td colspan="2">Name 3</td>
  <td>Name 4</td>
 </tr>

 <tr>
  <td rowspan="3">ITEM 1</td>
  <td rowspan="3">ITEM 2</td>
  <td>name1</td>
  <td>price1</td>
  <td rowspan="3">ITEM 4</td>
 </tr>

 <tr>
  <td>name2</td>
  <td>price2</td>
 </tr>
 <tr>
  <td>name3</td>
  <td>price3/td>
 </tr>
</table>
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language