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

container soll mitwachsen

amigo89

Neues Mitglied
Hallo zusammen,

ich versuche gerade ein recht simples design zu machen, allerdings gelingt es mir nicht wirklich

ich habe 3 divs: top, left, right

Top-div funktioniert soweit ganz gut.
left und right allerdings nicht, ich möchte dass sie mitwachsen, egal ob left oder right größer (bzw. mehr inhalt bekommt).

Das ganze sieht folgendermaßen aus: http://85.25.153.81/divcontainer/

hier der code dazu

CSS-Datei

HTML:
body
{
    margin:0px;
}


#top
{
   
   
    background-color:black;
    height:150px;
    width:100%;   
    color:white;

   
   
}

#container
{
   
    height:100%;
    width:100%;
   
   
   
}


#left
{
   
   
    float:left;
    width:250px;
    background-color:green;
    min-height:100%;
   
   
   
}

#toptest
{
    background-color:red;
    position:absolute;
    margin-left:500px;
}

#right
{
    background-color:yellow;
    min-height:100%;
   
   
}


Code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>
</title>
<body>
<div id="container">
<div id="top">
<div id="toptest"></div>
</div>
<div id="left"></div>
<div id="right"></div>
</div>
</body>
</head>
</html>

Was mach ich falsch? Wie bekomme ich das hin?

Danke!

Mfg,
amigo
 
Zurück
Oben