steve: Tabelle ==> CSS

Beitrag lesen

hi zusammen,

ich habe eine tabelle mit width:100% und height:100% definiert.
nun möchte ich nur das obere hauptmenü in einer tabelle haben und die anderen bereiche in divs aufteilen.

*******************************************
*               Hauptmenü                 *
*          als  Tabelle  definiert        *
*          feste Höhe 140px               *
*******************************************
*                    *                    *
* linker Bereich     *  rechter Bereich   *
* mit Hintergrund    *  mit Hintergrund   *
* Farbe 2            *  Farbe 3           *
* feste Breite 140px *                    *
*******************************************

<div style="height:100%;width:100%;>
<div style="height:140px;background:color1;">
 <table height="140" width="100%">
 ......
 </table>
</div>

<div style="width:140px;background:color2;float:left">
Menue
</div>

<div style="margin-left:140px;background:color3;">
Text
</div>
<div>

Das Problem ist, dass der Bereich mit color2 und color3 sich nicht über die ganze restliche(!) seitenhöhe erstreckt.

und <div style="width:140px;background:color2;float:left"> und
<div style="margin-left:140px;background:color3;"> um den befehl
height:100% bringt auch nicht das gewünschte ergebnis :-(

weiss jemand rat?

thx

steve