Page is a not externally linkable
optik - 2:07 pm on Feb 8, 2012 (gmt 0)
How can I get the table to end at the need of the page instead of causing scrollbars, I understand it is inheriting the window height
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type=text/css>
#wrapper, html,head,body{
height:100%;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
#header{
height:48px;
background-color:#FFFF909;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
</div>
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" id="template" bgcolor="#FFF908">
<tr>
<td align="center" valign="top">
</td>
</tr>
</table>
</div>
</body>
</html>