Hallo Pedda,
die Tabelle hat 100% Breite und 100% Höhe.
Die Spalten links und rechts sind jeweils 350px breit.
Die Oberste und Unterste Zeile ist 120px hoch
Schau mal, ob das funktioniert:
<html>
<head>
<title></title>
<meta name="author" content="Gernot Back">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<style type="text/css">
[code lang=css]
html, body, table#myLayoutTable, iframe#myIframe {
width:100%;
height:100%;
margin:0;
padding:0;
}
tr.vertikalAbstand {
height:120px;
}
td.horizontalAbstand {
width:350px;
}
</style>
</head>
<body >
<table id="myLayoutTable">
<tr class="vertikalAbstand">
<td colspan="3"></td>
</tr>
<tr>
<td class="horizontalAbstand"></td>
<td>
<iframe id="myIframe" src="deinIframe.html"></iframe>
</td>
<td class="horizontalAbstand"></td>
</tr>
<tr class="vertikalAbstand">
<td colspan="3"></td>
</tr>
</table>
</body>
</html>
[/code]
Gruß Gernot