hab mal gerade ne ganz simple HTML-Demo gemacht um zu gucken, wie die 3 Browser das darstellen
Opera macht es meiner Meinung nach perfekt.
FF hat ein Problem bei den Tabellen.
Nun meine Frage: kann man FF dazu ermuntern, den Text auch automatisch bei einem - umzubrechen wie es IE und Opera machen?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Demo</title> </head> <body> <h1>Tabelle 300 Pixel</h1> <table style="border:1px solid #000000;" width="300px"> <tr> <td width="100px" style="border: 1px solid #000000;">A B C D E F-1 G H I J K L</td> <td width="100px" style="border: 1px solid #000000;">Spalte 2</td> <td width="100px" style="border: 1px solid #000000;">Spalte 3</td> </tr> </table> <h1>Tabelle 300 Pixel</h1> <table style="border:1px solid #000000;" width="300px"> <tr> <td width="100px" style="border: 1px solid #000000;">1-11-111-1111-11111-1111-1111</td> <td width="100px" style="border: 1px solid #000000;">1-11-111-1111-11111-1111-1111</td> <td width="100px" style="border: 1px solid #000000;">1-11-111-1111-11111-1111-1111</td> </tr> </table> <h1>Tabelle 300 Pixel</h1> <table style="border:1px solid #000000; white-space:normal;" width="300px"> <tr> <td width="100px" style="border: 1px solid #000000;">11111111111111111111111</td> <td width="100px" style="border: 1px solid #000000;">11111111111111111111111</td> <td width="100px" style="border: 1px solid #000000;">11111111111111111111111</td> </tr> </table> </body> </html>
FF hat ein Problem bei den Tabellen.
Nun meine Frage: kann man FF dazu ermuntern, den Text auch automatisch bei einem - umzubrechen wie es IE und Opera machen?
Kommentar