Simon: div strecken

Beitrag lesen

Also meine Website ist so auf gebaut, dass auf der Startseite nur die Menüs sichtbar sind. Was jetzt aber auch nicht mehr geht. Der div id ="inhalt" wird jetzt auch angezeigt.~~~css #menue1 {
   float: left;
position: absolute;
background-color: black;
height: auto;
width:450px;
/border-width:3px;
   border-style:solid;
border-color:black;
/
margin-left:445px;
font-size: 40px;
text-align: center;
margin-top: 113px;
  }

#menue2 {
    border-width:3px;
border-color: red;
border-style:solid;
    height: 335px;
width: 450px;
margin-left: 900px;
    }
#menue3 {
border-width:3px;
border-color: blue;
border-style:solid;
    height: 335px;
width: 450px;
margin-left: 445px;

Wenn man jetzt einen Menüpunkt anklickt soll der div id="inhalt" über die ganze Startseite geöffnet werden.  
~~~css
#inhalt {  
  opacity: 0.93;  
  filter:alpha(opacity=93); /* Internet Explorer 4-8 */  
  background-color: black;  
width: 100%;  
min-height: 100%; /* Mindesthöhe für moderne Browser */  
height:auto !important; /* Important Regel für moderne Browser */  
height:100%; /* Mindesthöhe für den IE */  
overflow: hidden !important; /* FF Scroll-leiste */ 

div html, body = ist der body und das html. Es ist gar kein div. War mein Fehler. lg