Stefan: html, body,... height:100% - Fehler im IE6

Beitrag lesen

Hi!

Poste mal dein Coding, dann kann man weitersehen.

Ich werde mir einmal diesen Box Model Bug ansehen... aber hier
ist mein Code! Es ist nur eine kleine Tabelle die diesen
Fehler zeigen soll ;)

<!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>Hmmmm</title>
</head>
<style type="text/css">
html {
height:100%;
}
body {
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 style="height:100%; 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>