Ben: div-Höhe

Beitrag lesen

Da wäre ich wieder.

Ich habe nun nach Ingo's Ratschlägen mein Grundgerüst überarbeitet.

Das schaut nun so aus:

<div id="weiss">
<div id="rechtsoben">
  <div id="header">
   <div id="rechtsunten">
    <div id="menu"><?php include("menu.php"); ?></div>
    <div id="content">
     <?php

if (isset($_GET['seite']))
      {
       include($_GET['seite'].".php");
      } else {
       include('news.php');
      }
     ?>
    </div>
    <div id="barcode"><img src="gfx/barcode.gif"></div>
   </div>
  </div>
</div>
</div>

----

Die entsprechende CSS-Datei so:

#weiss
{
  background-image:url('../gfx/weiss.gif');
  background-repeat: repeat-y;
  width: 799px;
  height: auto;
}

#rechtsoben
{
  width: 792px;
  height: auto;
  background-image:url('../gfx/kabel1.jpg');
  background-position: 100% 0%;
  background-repeat: no-repeat;
}

#header
{
    width: 792px;
    height: auto;
    background-image:url('../gfx/logo.gif');
    background-position: top left;
    background-repeat: no-repeat;
}

#rechtsunten
{
    width: 793px;
    height: auto;
    background-image:url('../gfx/kabel2.jpg');
    background-position: bottom right;
    background-repeat: no-repeat;
}

#menu
{
    width: 200px;
    float: left;
    padding-top: 400px;
   padding-left: 40px;
}

#content
{
    width: 350px;
    padding-left: 250px;
    padding-top: 220px;
    height: auto;
    text-align: justify;
}

#barcode
{
    padding-left: 10px;
    padding-bottom: 10px;
    clear: left;
}

------------------------

Im Firefox wird alles schön richtig angezeigt. Im IE jedoch ist der content-Bereich vollkommen eingequetscht. Siehe -> http://www.bens-homepage.de/v3

Liegt das an dem Padding? Was muss ich tun, damit auch der IE die Seite korrekt darstellt?

Danke und viele Grüße
Ben