Ich habe das nun nochmal anders versucht: Beispiel
Das geht auch, aber eine weitere box unter rightcontent kann ich nun nicht anordnen, weil ich ja dann wieder einen wert mit top nehmen müsste. Würde rightcontent einmal länger generiert werden als normal, dann stimmt der top Wert ja nicht mehr.
Wie löst man das sonst?
Code:
#content {
background-color: #e2ebf5;
width: 915px;
margin: auto;
position: relative;
padding: 10px;
}
#leftcontent {
background-color: #ffffff;
min-height: 500px;
width: 600px;
padding: 10px;
}
#rightcontent {
background-color: #ffffff;
min-height: 100px;
width: 255px;
padding: 10px;
right:10px;
top:10px;
position: absolute;
}
Code:
<div id="content">
<div id="leftcontent">
links
</div>
<div id="rightcontent">
rechts
</div>
</div>
Das geht auch, aber eine weitere box unter rightcontent kann ich nun nicht anordnen, weil ich ja dann wieder einen wert mit top nehmen müsste. Würde rightcontent einmal länger generiert werden als normal, dann stimmt der top Wert ja nicht mehr.
Wie löst man das sonst?