Karli: Div-Container verschiebt sich immer automatisch nach unten

Beitrag lesen

Noch einige Erklärungen:

Content ist der Container für die 3 Spalten.

#content   {
      width:1109px;
      min-height:414px;
        height:auto !important;
        height:414px;
      margin: 2px 0px 0px 6px;
     }

Die linke Spalte.
#cont_left   {
      width:180px;
      min-height:412px;
        height:auto !important;
        height:412px;
      background-color: #e1dfe0;
      float:left;
      position: absolute;
     }

Die mittlere Spalte, in die der Inhalt kommt.
#cont_center  {
      width:240px;
      min-height:412px;
        height:auto !important;
        height:412px;
      background-color: #eae8e9;
      margin: 0px 4px 0px 182px;
      position: absolute;
      padding-left:5px;
      padding-right:5px;
     }

Die rechte Spalte
#cont_right   {
      clear: both;
      width:667px;
      min-height:412px;
        height:auto !important;
        height:412px;
      background-color: #eeebec;
      margin: 0px 4px 0px 434px;
      padding-top:0.3px;
      padding-left: 5px;
      padding-right: 5px;
      position:absolute;
     }

Ich möchte nun, dass diese Spalten alle gleich hoch sind, je nach Inhalt. krieg es leider nicht hin und habe schon mehrere beispiel-CSS verwendet und es damit auch nicht geschafft. Habt ihr eine Idee?

Wäre super wenn mir jemand helfen könnte!

Karli