jürgen j.: Tabellen-Höhe: Bug in Opera 7.11?

Beitrag lesen

Hallo!

Die Sache funktioniert erwartungsgemäß auch mit CSS nicht, wenn 3 Tabellen verschachtelt sind: (für Opera 6 kein Problem)

<style>
body, html, table, .t100 {height:100%}
body {margin:0; padding:0}
</style>

<table border>
 <tr>
   <td class="t100">
    <table border width="777">
 <tr >
     <td class="t100">
  <table border width="190">
      <tr><td height="85">1.Zeile</td></tr>
      <tr><td height="5%">2. Zeile</td></tr>
      <tr><td>3. Zeile</td></tr>
  </table>
     </td>
 </tr>
    </table>
   </td>
 </tr>
</table>

tschüs, jürgen