Quantcast
Channel: Últimos conteúdos
Viewing all articles
Browse latest Browse all 14190

Fazer tabela ocupar tela inteira no html altura

$
0
0

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>

Viewing all articles
Browse latest Browse all 14190