Sauber... ihr habt mir den Tag gerettet. Das mit dem Overflow ist jetzt auch klar. Stichwort Quirksmode wars. CSS und Webentwicklung ist nicht mein Lieblingsding -.-. Wie auch immer... läuft jetzt. Vielen Dank nochmal
Daniel
Hier nochmal der Code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
body{
margin: 0px;
padding: 0px;
}
.root{
width: 100%;
height: 100%;
/*Die Farben sollen nur die Bereiche kenntlich machen*/
background-color: green;
}
.menu{
height: 3.7em;
background-color: red;
}
.content{
position: absolute;
bottom: 0em;
top: 3.7em;
width: 100%;
overflow: auto;
background-color: blue;
}
</style>
</head>
<body>
<div class="root">
<div class="menu">
Menu
</div>
<div class="content">
Content
</div>
</div>
</body>
</html>