Kirsten Evers: Tabellenproblem

Beitrag lesen

Mallo Mathias,

so ganz habe ich dein Problem nicht verstanden. Du hast eine Grafik, die unten links mit einer Tabellenspalte bündig abschliessen soll. Wenn der untere Rand der Grafik dort 132 Pixel breit ist, dann muss auch die Tabellenspalte darunter 132 Pixel breit sein, und nicht 79 Pixel. Von mir bearbeiteter Code, funzt im IE 5.0:

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

<html>
<head>
<title>Mathias Online</title>
</head>

<body>
<!-- Seitenanfang -->
<table BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="800">
<tr>
<td><img SRC="http://www.betschart.com/bilder/homepage_oben.gif" height="74" width="800"></td>
</tr>
</table>
<!-- End Seitenanfang -->

<!-- Menueleiste -->
<table BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="800">
<tr>
<th valign=top WIDTH="132" BGCOLOR="#3333FF">
<table BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<tr>
<td>
<a href="/portal/" class="menue">Home</a>
</td>
</tr>
</table>
</th>
<!-- End Menueleiste -->

<!-- Dynamische Tabelle -->
<td valign="top" BGCOLOR="#FFFFFF" align="center">
<a class="uebertitel">Titel</a>

<table BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="80%">
<tr><td>
<a class="text">text</a>
</td></tr>
</table>
</th>
</tr>
</table>
<!-- End Dynamische Tabelle-->

<!-- Seitenende -->
<table BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="800">
<tr>
<td WIDTH="132" BGCOLOR="#3333FF">
<a class="textweiss">datum</a><br>
</td>

<td nowrap valign=top BGCOLOR="#3333FF">
<a class="textweiss">text</a>
</td>
</tr>
</table>
</body>
</html>

Viele Grüße,

Kirsten