matthias: Opera 7.10 und html height:100%

Tach!
Ich wollte ne 100% Tabelle auf meiner Seite haben. Also:
<HTML style="height:100%">
<BODY style="height:100%">
<TABLE cellSpacing=0 border=0 style="height:100%; width:100%">

funz auch überall toll. nur mein Opera 7.10 Build 2840 stürzt beim Laden der Seite ab. Nehm ich beide height angaben im html und body tag raus, geits.

Warum????
mfg
matze

  1. Hallo,

    funz auch überall toll. nur mein Opera 7.10 Build 2840 stürzt beim Laden der Seite ab.

    Selbe Version, selber Build, ich habe mit folgendem Code keine Probleme:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

    <html>
    <head>
     <title>Untitled</title>
     <style type="text/css">
     html, body { width:100%; }
     table {width:100%; height:100%; }
     </style>
    </head>

    <body>

    <table cellspacing="0" border="1">
    <tr><td>aaaaaa</td><td>bbbbbbbbbb</td><td>cccccccccc</td></tr>
    </table>

    </body>
    </html>

    Grüße
    Thomas

  2. Hallo!

    <HTML style="height:100%">

    Das ist schonmal falsch.
    Es gibt für <html> kein Attribut style="" in html4.

    Tschüs, jürgen