Full height table inside table cell
HTML
<table>
<theader>
<tr>
<th>
Title 1
</th>
<th>
Title 2
</th>
<th>
Title 3
</th>
<th>
Title 4
</th>
</tr>
</theader>
<tbody>
<tr>
<td>
<table>
<tbody>
<tr>
<td>
Contenido 1
</td>
<td>
Contenido 2
</td>
<td>
Contenido 3
</td>
<td>
Contenido 4
</td>
<td>
Contenido 1
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>