Frank: DIV: 100% nur angezeigter Bereich im Browser?

Beitrag lesen

Hallo,

das ändert leider nichts an dem Problem. Sobald gescrollt werden muss gilt auch für den DIV "Aussen" nur noch die Größe des Vieports.

Rätsel...

Grüße - Frank

<html>
<head>
<title>Divs</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
 html,body {
   padding:0px;
   margin:0px;
   background:#333
 }
 #Ebene1 {
   position:absolute;
   width:90px;
   height:100%;
   z-index:2;
   left: 0px;
   top: 0px;
   background-color: #00FF00;
   overflow: visible;
 }
 #Ebene2 {
   position:absolute;
   width:200px;
   height:500px;
   z-index:3;
   left: 200px;
   top: 0px;
   background-color: #0000FF;
   overflow: visible;

}
 #Aussen {
  position:static;
  z-index:1;
  left: 0px;
  top: 0px;
  background-color: #FF0000;
  overflow: visible;
  width:auto;
    height:auto;
 }

</style>
</head>
<body>
 <div id="Aussen">
    <div id="Ebene1"></div>
    <div id="Ebene2"></div>
 </div>
</body>
</html>