• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Div-Container via CSS

Status
Für weitere Antworten geschlossen.

Blacky

Neues Mitglied
Ich stehe vor einem Problem, dessen Lösung ich einfach nicht sehe...
Wo liegt mein Fehler?

test

Im Firefox sieht es so aus, so wie ich es möchte und im IE



Code:
Code:
<body>

  <div id="all">
 
   <!-- <div id="head">
       <h3></h3>
    </div>-->


     <div id="label">
       ...

     </div>



    <div id="content">

         <span id="h3">
         ...
         </span>

     </div>



     <div id="links">
         home
     </div>
     
     
     <div id="space">

     </div>

     
  </div>



</body>



Code:
Code:
body {
  margin: 10;
  padding: 0;
  background: #B2BDC8 url(gfx/bg.png);
}



#all {
  border: 1px solid #000;
  background: #ddd;
  position: relativ;
  overflow: visible;


  height: 100%;

  width: 753px;
  margin: auto;

 
}

#content {
  background: #eee;
  width: 450px;

  padding: 10px;
 
  margin-left: 10px;

 
  margin-right: 0px;
  margin-bottom: 10px;
 
  float: left;
}



#label {
  background: #fff;
  width: 450px;

  padding: 10px;
  margin: 10px;

}


#links {
  background: #fff;


  padding: 10px;
  margin-left: 490px;
  margin-right: 10px;

}



#space {
  clear: both;

}
 
Werbung:
Werbung:
Status
Für weitere Antworten geschlossen.
Zurück
Oben