
Eintrag 1 sieht so aus:
1 | <td colspan="2" style="width: 615px; height: 105px" background="images/header_bottom_2.jpg"></td> |
2 und 3 sehen so aus:
1 2 | <td style="width: 73px; height: 46px" background="images/content_leiste_top.jpg"></td> <td style="width: 542px" bgcolor="#FFFFFF"></td> |
jetzt sind 2 und 3 aber immer gleich groß, obwohl die größe ja festgesetzt ist, wie verhindere ich jetzt, dass sich eintrag 2 streckt ?
der code ist etwas komplexer, hier mal alles zusammen:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <! doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> < html > < head > < title >Break Of Dawn</ title > </ head > < body style = "margin: 0px; padding: 0px" bgcolor = "#000000" > < table border = "1" cellpadding = "0" cellspacing = "0" align = "center" > < tr > < td colspan = "3" style = "width: 800px; height: 114px" background = "images/header_top.jpg" ></ td ></ tr > < tr > < td colspan = "3" style = "width: 800px; height: 104px" background = "images/header_top_2.jpg" ></ td ></ tr > < tr > < td style = "width: 137px; height: 33px" background = "images/navi.jpg" ></ td > < td style = "width: 48px; height: 33px" background = "images/leiste_top.jpg" ></ td > < td style = "width: 615px; height: 33px" background = "images/header_bottom.jpg" ></ td > </ tr > < tr > < td rowspan = "2" style = "width: 137px; height: 1000px;" bgcolor = "#686868" ></ td > < td style = "width: 48px; height: 105px" background = "images/leiste_top_2.jpg" ></ td > < td colspan = "2" style = "width: 615px; height: 105px" background = "images/header_bottom_2.jpg" ></ td > </ tr > < tr > < td rowspan = "2" style = "width: 48px; height: 1000px" background = "images/leiste.jpg" ></ td > < td style = "width: 73px; height: 46px" background = "images/content_leiste_top.jpg" ></ td > < td style = "width: 542px" bgcolor = "#FFFFFF" ></ td > </ tr > </ table > </ body > </ html > |
ohne diese zeile wird es nicht verzerrt:
1 | <td style="width: 542px" bgcolor="#FFFFFF"></td> |
danke schonmal

Zuletzt geändert von seth am 01.11.2005 - 21:29