Can someone tell me how I can make a table be 100% height in Mozilla browsers?
this is the html code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<table cellpadding="0" cellspacing="0" width="177" height ="100%">
<tr>
<td height="100%"> </td>
</tr>
</table>
</body>
</html>
As the above answer shows, you use CSS to do this.
Setting the html, body height to 100% so that the contents can use its parents height:
And then setting your tables height to 100%:
This should result in the desired effect.