Stefan: Tabelle, Div, ... auf Browserhöhe anpassen

Beitrag lesen

Folgendes Script funkitoniert aber dann im Internetexplorer nicht:
Also die Innere Tabbelle wird nicht auf 100% angezeigt.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<style>
html, body {
 height:100%;
 width: 100%;
 margin:0;
 padding:0;
}

</style>

</head>

<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#330066">
  <tr>
    <td align="center" valign="top">

<table width="500" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#990000">
    <tr>
      <td>&nbsp;</td>
    </tr>
  </table>

</td>
  </tr>
</table>
</body>
</html>