tomaten: IE7 and full table height

Beitrag lesen

Bzw. ignoriert die oberen Zeilenhöhe. Dieser HTML schiesst aus dem Bild, läuft aber im Firefox:

<!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>
 <title>Test</title>
 <link rel="stylesheet" type="text/css" href="common.css">
</head>
<body>
 <form>
  <table border="1" style="width: 100%; height: 100%; ">
   <tr style="height: 50px; ">
    <td style="height: 50px; ">test1</td>
   </tr>
   <tr style="width: 100%; height: 100%; ">
    <td style="width: 100%; height: 100%; ">test2</td>
   </tr>
  </table>
 </form>
</body>
</html>