Estou criando uma tabela e gostaria que ela ocupasse a tela inteira em relação à altura através da propriedade height no html, sem usar css.
Estou fazendo da seguinte forma, mas não está funcionando.
<table width="100%" height="100" border="5">
<tr height="20%">
<td width="33%" height="20%">
</td>
<td width="33%" height="20%">
</td>
<td width="34%" height="20%">
</td>
</tr>
<tr height="20%">
<td width="33%" height="20%">
</td>
<td width="33%" height="20%">
</td>
<td width="34%" height="20%">
</td>
</tr>
<tr height="20%">
<td width="33%" height="20%">
</td>
<td width="33%" height="20%">
</td>
<td width="34%" height="20%">
</td>
</tr>
<tr height="20%">
<td width="33%" height="20%">
</td >
<td width="33%" height="20%">
</td>
<td width="34%" height="20%">
</td>
</tr>
<tr height="20%">
<td width="33%" height="20%">
</td>
<td width="33%" height="20%">
</td>
<td width="34%" height="20%">
</td>
</tr>
</table>