Hallo,
der IE raubt mir langsam aber sicher die letzten Nerven. Folgende Situation:
style.css
Das Problem: Wenn der Content breiter als der zur Verfügung stehende Platz wird, kann man den Content im Firefox prima scrollen. Der IE ist aber der Meinung, er müsste die komplette Seite scrollen, Im Block div_tree macht er es aber richtig. Kann mir bitte jemand sagen, wo da der Fehler ist, oder ist der IE einfach nur zu blöde.
MfG
MasterMind
der IE raubt mir langsam aber sicher die letzten Nerven. Folgende Situation:
style.css
Code:
.div_main_content
{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
text-align: center;
z-index : 999;
margin: 0px;
padding: 0px;
}
.div_tree
{
position: absolute;
left: 0px;
top: 0px;
width: 250px;
height: 100%;
z-index : 500;
overflow: auto;
z-index : 10;
text-align: left;
}
.div_content
{
position: absolute;
left: 250px;
top: 0px;
height: 100%;
z-index : 10;
overflow: auto;
margin: 0px;
padding: 0px;
}
Code:
<html>
<body>
<div class="div_main_content">
<div class="div_tree">
Ausgaben
Ausgaben
Ausgaben
</div>
<div class="div_content">
Content
Content
Content
</div>
</div>
</body>
</html>
MfG
MasterMind

Kommentar