Okay, ich habe ein dreispaltiges layout:
#contentleft{
background: #48A942;
position: absolute;
width: 200px;
height: 100%;
left: 0px;
top: 0px;
z-index: 2;
}
#content{
background: #F6F6F6;
position: absolute;
height: 100%;
left: 200px;
top: 0px;
z-index: 3;
}
#contentright{
background: #48A942;
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
z-index: 1;
}
allerdings möchte ich auf contentright auch inhalt schreiben. Jedoch wird dieser ja durch z-index als unterste Ebene angezeigt und ist somit nicht sichtbar... wie mache ich, dass der Inhalt rechts vom Content angezeigt wird, wenn es ja so ist, dass sich der content ja je nach inhaltgröße verschiebt?!