Use CSS. I have added centering of text too:
Quote:
<html>
<head>
<title>100% Table Height</title>
</head>
<body>
<table style="width:100%;height:100%;text-align:center;">
<tr>
<td>This is stuff in cell1</td>
<td>This is stuff in cell2</td>
</tr>
</table>
</body>
</html>
|