Höhere Zelle soll keine Auswirkungen auf die Höhe anderer Zellen haben

Status
Nicht offen für weitere Antworten.

WuttkeA

Grünschnabel
Hallo,

ich baue gerade ein Tabledesign, habe das head und die linke Navigation fertig, weiß aber nicht wie ich den Contentbereich (mitte) und die 2. nav (rechts) AUSSER mit PHP functions wie require einbinden kann
Da ich folgendes Problem habe:

Mein Quellcode:
<table cellpadding="0" cellspacing="0" border="0" height="7">
<tr> <td rowspan="2" height="7"><img src="1_5.jpg" width="10" height="7"></td>
<td width="140" height="7"><img src="1_4.jpg" width="140" height="7" ></td>
<td rowspan="2" width="98%">

<table cellpadding="0" cellspacing="0">
<tr><td>test</td></tr>

</table>


Leider aht das "test" (8pixel oder so hoch) eine Auswirkung auf die Höhe der Zelle mit dem Bild 1_4.jpg
Wie kann ich das verhindern?


Bei diesem Quellcode funzt es reibungslos
Was mache ich anders?:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%" colspan="2"></td>
</tr>
<tr>
<td width="1%"><img height="20" src="9.jpg" width="140" border="0"></td>
<td width="99%" rowspan="4">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="99%">Hier ist der Text </td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="1%"><img src="11.jpg" width="140" height="19"></td>
</tr>
<tr>
<td width="1%"><img src="1.jpg" width="140" height="19"></td>
</tr>
<tr>
<td width="1%"><img height="20" src="bild1.jpg" width="140"></td>
</tr>
</table>


Würde mich über Antwort freuen
Alex
 
Moin!

Also, du könntest eine Zelle verbinden, wenn ich dein Problem richtig verstanden habe.

Hier der Code:
(schau ihn dir mal an, vielleicht kannst du den irgendwie einbinden)

<html>
<head>
</head>
<body>



<table border="1">
<tr>
<th rowspan="2">ABCDEF</th>
<td>GHIJKL</td>
</tr><tr>
<td>MNOPQ</td>
</tr><tr>
<th rowspan="2">RSTUV</th>
<td>WXYZ</td>
</tr><tr>
<td>123456</td>
</tr>
</table>

</body>
</html>
 
Status
Nicht offen für weitere Antworten.
Zurück