html nested table rows

Solutions on MaxInterview for html nested table rows by the best coders in the world

showing results for - "html nested table rows"
Manny
09 Sep 2018
1<table>
2    <tr>
3        <td>
4          	<table>
5                <tr>
6                    <td>Nested 1</td>
7                    <td>Nested 2</td>
8                </tr>
9        	</table>
10      	</td>
11    </tr>
12    <tr>
13        <td>Lipsum...</td>
14    </tr>
15</table>