Hi,
habe auch eine eigene Lösung gefunden, auch wenn ich da dann noch ein div verschachteln muss.
War für mich jetzt einfacher, anstatt wieder alles umzubauen.....
Lösung sieht jetzt so aus:
html:
<div class="dive">
<div class="divero">
<div class="divelo">
<div class="diveru">
<div class="divelu">
<div class="diveleer">
<div class="diveinhalt">
<?
for($count = 1; $count < 100; $count++)
{
echo "viel text viel text viel text viel text viel text","<br>";
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
css:
.dive{z-index:4; margin:0;}
.divero {background:url(../common/pics/roundedbox_ro.gif) top right no-repeat; }
.divelo {background:url(../common/pics/roundedbox_lo.gif) top left no-repeat; }
.diveru {background:url(../common/pics/roundedbox_ru.gif) bottom right no-repeat;}
.divelu {background:url(../common/pics/roundedbox_lu.gif) bottom left no-repeat; }
.diveleer {margin:0; height:25em; padding:0.0em 0.0em 0.4em 0.0em;}
.diveinhalt {margin:0; padding:0.5em 2.5em 0.0em 1.0em; font-size:0.9em; overflow:auto; height:24.9em;}
Vielen Dank für die Hilfe.
Stefan