Einzelnen Beitrag anzeigen
  #2 (permalink)  
Alt 01.01.2006, 14:10
Tigereye Tigereye ist offline
Erfahrener Benutzer
XHTMLforum-Kenner
 
Registriert seit: 20.02.2005
Beiträge: 1.045
Tigereye befindet sich auf einem aufstrebenden Ast
Standard

Hi,
du hast offensichtlich heigjht und min-height verwechselt.
Der IE interpretiert min-height so wie die anderen Browser height. Deswegen bringt es nicht, für IE (per Starhack) min-height anzugeben.
So sollte es funktionieren:
Code:
...
#container{
 width:795px;
 min-height: 100%;
 margin: 0 auto 0 auto;
 background-color: #FAAE53;
 border-left: 1px solid Black;
 border-right: 1px solid Black;
 border-bottom: 1px solid #FAAE53;
 padding-left: 5px 0 0 0;
}

* html div#container {
 height:100%;
 }


#navigation{
 width:145px;
 float: left;
 background-color: #FCD09A;
 border: 1px solid Black;
 display: run-in;
 overflow: inherit;

  }

* html div#navigation {
 height:100%;

 }

#content{
 width:500px;
 float:left;
 background-color: #FDE1C0;
 min-height:100%;
 border-top: 1px solid Black;
 border-right: 1px solid Black;
 border-bottom: 1px solid Black;
 }

* html div#content {
 height:100%;
 }

#holder {
 width:5px;
 height: 100%;
 float:left;
 }
 
#sub-content{
 width:130px;
 float:left;
 background-color: #FCD09A;
 border-left: 1px solid Black;
 border-right: 1px solid Black;
 border-top: 1px solid Black;
 border-bottom: 1px solid Black;
 min-height: 100%;
}

* html div#sub-content {
 height:100%;
 } 
...
Mit Zitat antworten
Sponsored Links