Hi Leute,
ne kurze und einfach Frage:
Ich habe ein Haupt-DIV [color=red]main[/color], wo ein Mittelteil [color=red]content[/color] sowie ein rechter Teil [color=red]right[/color] definiert sind. Etwa so:
Jetzt möchte ich den Mittelteil (also den [color=red]content[/color]) scrollbar, sowie 100% hoch machen. Ich habs mir wiefolgt vorgestellt:
Statt des gewollten Zieles hat alles ne Höhe von ca. 10px und ist somit nicht 100% hoch.
Gedankenansatz falsch?
ne kurze und einfach Frage:
Ich habe ein Haupt-DIV [color=red]main[/color], wo ein Mittelteil [color=red]content[/color] sowie ein rechter Teil [color=red]right[/color] definiert sind. Etwa so:
PHP-Code:
<div id="main">
<div id="content">
{include file=$content}
<div id="foot">
{include file="frontend/index_foot.tpl"}
</div>
</div>
<div id="right">
{include file="frontend/index_right.tpl"}
</div>
</div>
PHP-Code:
#main {
display: block;
left: 135px;
padding: 15px 0 0 15px;
position: absolute;
top: 75px;
width: 850px;
}
#main #content {
height: 100%;
overflow: auto;
position: absolute;
width: 675px;
}
...
#main #content #foot {
display: block;
left: 0;
min-width: 675px; /* IE6 macht alles 2px größer --> Opera und FF kennen min-width, IE6 nicht */
padding: 3px 0 3px 0;
position: absolute;
text-align: center;
width: 673px;
}
...
#main #right {
display: block;
position: absolute;
top: 15px;
left: 705px;
width: 135px;
}
Gedankenansatz falsch?
Kommentar