• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Tabellen..

gunny

Neues Mitglied
Hallo,

ich versuch gerade eine Tabelle zu gliedern und bekomms einfach nicht hin, wär klasse, wenn mir jmd einen tipp geben könnte

code:
Code:
<table width="950px" height="400px" border="0" cellspacing="0" cellpadding="0" bgcolor="#778899">

   <tr height="40">
         <td colspan="3" bgcolor="#555555"></td>
   </tr>

   <tr height="240">
         <td bgcolor="#56F7FF" width="350" ></td>
         <td bgcolor="#FFFFFF" colspan"2" rowspan="2" ></td>

   </tr>

   <tr height="120">
         <td bgcolor="#676767"></td>

   </tr>
</table>
ich hätte die tabelle gerne so, dass in der 3. Zeile der 1. Spalte die erste Zelle (die anderen beiden sind ja bereits belegt) in 2 gleichgroße Zellen aufgeteilt wird. habs schon mit fest zugewießenen größen versucht, geht nicht, einfach eine weitere zelle in der spalte einführen klappt auch nicht...

habs grade selbst hinbekommen, hier der code, falls es wen interessiert:

Code:
<table width="950px" height="400px" border="0" cellspacing="0" cellpadding="0" bgcolor="#778899">

   <tr height="40">
         <td colspan="3" bgcolor="#555555"></td>
   </tr>

   <tr height="240">
         <td bgcolor="#56F7FF" colspan="2" width="350" ></td>
         <td bgcolor="#FF4545"  rowspan="2" ></td>

   </tr>

   <tr height="120">
         <td bgcolor="#676767" width="175"></td>
         <td bgcolor="#611111" width="175"></td>

   </tr>
</table>

beispiel.jpg
 
Zuletzt bearbeitet:
Zurück
Oben