Hi!
html, body, #deineTabelle {
margin:0;
padding:0;
height:100%;
}
> sollte aber schon funktionieren. Dein TABLE-Anfangstag hätte dann das Attribut id="deineTabelle".
Hm... :/
Hat auch nicht funktioniert... Brauchen die restlichen Elternelemente (siehe Code) auch dieses height:100%? Oder stimmt an diesem Code noch etwas nicht?
Stimmt der DOCTYPE?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
</head>
<style type="text/css">
html, body, #deineTabelle {
margin:0;
padding:0;
height:100%;
}
</style>
<body>
<table style="height:100%">
<tr style="height:100%">
<td style="width:200px; vertical-align:top; height:100%" rowspan="3">
<table id="deineTabelle" style="width:100%">
<tr>
<td bgcolor="red">sasdfasdfasdfasdf</td>
</tr>
<tr>
<td bgcolor="green">s</td>
</tr>
<tr>
<td height="100%">s</td>
</tr>
</table>
</td>
<td style="width:500px">s</td>
</tr>
<tr>
<td>s</td>
</tr>
<tr>
<td>s</td>
</tr>
</table>
</body>
</html>