mal wieder (min-)height / IE FF

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • mal wieder (min-)height / IE FF

    Moin,
    ich will eine Box in der Mitte (#wrapper), in dem ein #left und ein #right definiert sind. Höhe soll bei allen div's 100% der Bildschirm Fläche sein. Kenne die IE height Problematik.
    Warum klappt folgender Code im FF nicht:
    PHP-Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd"

    <
    html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
    <
    head>
        <
    title>Site Name</title>

        <!-- 
    StyleSheet extern //-->
        
    <link rel="stylesheet" type="text/css" href="_css/standard.css" />

      

      </
    head>
    <
    body>
    <
    div id="wrapper" class="clearfix">
        <
    div id="left"><!--  //--></div>
        
    <div id="right"><!--  //--></div> 
    </div>

    </
    body>
    </
    html
    CSS:
    PHP-Code:
    htmlbody {height:100%;}



    body {  text-aligncenter;  font-size100.01%; 
              
    color#000; 
             
    }


    * {
    margin:0pxpadding:0px;  position:relative;}
    #wrapper { width: 980px !important;  height:100%;
               
    text-align:leftmargin0px auto
               
    bordersolid 0px blue
    }
    html>body #wrapper {
         
    height:auto
         
    min-height:100%; 
         
    }          

    #left { height:100%; width:200px; 
    background-color:#990000;border: solid 1px white;
     
    float:left;}
    #left[id] {  height:auto;    min-height:100%; } 

    #right { height:100%; width:775px;
     
    bordersolid 1px bluefloat:left;}          
    #right[id] { height:auto;    min-height:100%;      }
    .clearfix:after {
        
    content"."
        
    displayblock
        
    font-size:0px;
        
    height0px
        
    clearboth
        
    visibilityhidden
    }
    .
    clearfix {/* display: inline-table; */}
    /* Hides from IE-mac \*/
    html .clearfix {height1%;}
    .
    clearfix {displayblock;} 
    "I don't want to belong to any club that would accept me as a member."

    Groucho Marx
Lädt...
X