Moin leute,
ich möchte einen Div um 2 andere divs setzen deren Höhe abhängig von dem Text darin ist.
Derzeit sieht es so aus:
css:
sieht vlt ein wenig unübersichtlich aus aufgrund der vielen divs, nur eine andere Lösung sehe ich derzeit leider nicht um das zu realisieren.
lg
ich möchte einen Div um 2 andere divs setzen deren Höhe abhängig von dem Text darin ist.
Derzeit sieht es so aus:
PHP:
<div id="center">
<div id="top">
<div id="navi"> </div>
<div id="base"> </div>
</div>
<div id="mein"><!-- richtige position ändert die höhe aber nicht -->
<div id="left">Test<br>Test<br />Test<br />Test<br /></div>
<div id="base2">Test<br />Test<br />Test<br />Test<br />Test<br />Test
<div id="base_bottom"> </div>
</div>
<div id="bottom"> </div>
</div>
</div>
css:
Code:
#center {
position:relative;
top:20px;
width:1000px;
height:auto;
margin-left:auto;
margin-right:auto;
z-index:1;
}
#top {
position:absolute;
top:0px;
background-image:url(top.gif);
width:1000px;
height:168px;
z-index:1;
}
#navi {
position:relative;
top:60px;
background-image:url(navi.gif);
width:780px;
height:30px;
left:220px;
z-index:2;
}
#mein {
position:absolute;
top:168px;
background-image:url(main.gif);
background-repeat:repeat-y;
width:1000px;
height:auto;
z-index:1;
}
#base {
position:absolute;
top:138px;
margin-bottom:20px;
left:220px;
background-image:url(top_in.gif);
height:30px;
width:780px;
z-index:2;
}
#left {
position:absolute;
top:0px;
background-color:#92bcee;
float:left;
width:169px;
margin-bottom:20px;
height:auto;
z-index:1;
}
#base2 {
position:absolute;
background-image:url(base.gif);
background-repeat:repeat-y;
left:220px;
top:0px;
width:780px;
height:auto;
z-index:1;
}
#base_bottom {
position:absolute;
background-image:url(bottom_in.gif);
bottom:0px;
width:780px;
height:3px;
z-index:2;
}
#bottom {
position:absolute;
background-image:url(bottom_out.gif);
background-repeat:repeat-y;
width:1000px;
bottom:0px;
height:auto;
z-index:2;
}
sieht vlt ein wenig unübersichtlich aus aufgrund der vielen divs, nur eine andere Lösung sehe ich derzeit leider nicht um das zu realisieren.
lg