Læg mærke til det lille 'hack' med at sætte HTML- og BODY-elementerne til 100% i højden:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>TITLE</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
html, body {
height: 100%;
margin: 0px;
}
</style>
</head>
<body>
<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="middle" width="100%" height="100%" align="center">Iframe</td>
</tr>
</table>
</body>
</html>
Nu virker det - og din CSS vil virke i både IE og alle de ordentlige browsere :)
/mvh