Karli: Div-Container verschiebt sich immer automatisch nach unten

Beitrag lesen

Hallo zusammen

Hab ein Problem mit meinem 3-spältigem Layout.
Ich hab cont-left cont-center und cont-right.

So aufgebaut:

#cont_left   {
      width:180px;
      min-height:412px;
        height:auto !important;  /* für moderne Browser */
        height:412px;  /*für den IE */
         background-color: #e1dfe0;
         float:left;
      position: relative;
     }

#cont_center  {
      width:740px;
      min-height:412px;
        height:auto !important;  /* für moderne Browser */
        height:412px;  /*für den IE */
      background-color: #eae8e9;
      margin: 0px 4px 0px 182px;
      position: relative;
      padding-left:5px;
      padding-right:5px;
     }

#cont_right   {
      width:167px;
      min-height:412px;
        height:auto !important;  /* für moderne Browser */
        height:412px;  /*für den IE */
      background-color: #eeebec;
      margin: 0px 4px 0px 934px;
      padding-top:0.3px;
      padding-left: 5px;
      padding-right: 5px;
      position:relative;
     }

Leider wird der rechte immer unterhalb dargestellt. Was mache ich falsch?

Gruss Karli