Background geht nich über min-height

Status
Nicht offen für weitere Antworten.

Gunah

Erfahrenes Mitglied
Moin

bei mir geht der BG nicht über den Browserrand, da heißt wenn inhalt ca. 120% ist wird der Hintergrund nur 100% angezeigt.
HTML:
<div id="container1">
    <div id="container2">
        <div id="container3">
            <div class="menu">
LISTMENU
            </div>
            <div style="clear:both"></div>
            <div class="logo"><img src="images/head_normal.jpg" alt="Logo" /></div>
            <div class="main">
                <div class="headline"><img src="images/headline/home.gif" alt="Home" /></div>
                            </div>
        </div>
    </div>
    
</div>

CSS:
HTML:
#container1 {
    position:absolute;
    margin:auto;
    min-height:100%;
    padding-left:24px;
    background-image:url('../images/border_left.gif');
    background-position:top left;
    background-repeat:no-repeat;
    margin-bottom:0px;
    padding-bottom:0px;
}
#container2 {
    position:absolute;
    margin:auto;
    min-height:100%;
    width:982px;
    background-image:url('../images/main_bg.gif');
    background-repeat:repeat-y;
    margin-bottom:0px;
    padding-bottom:0px;
}
#container3 {
    position:absolute;
    margin:auto;
    min-height:100%;
    background-image:url('../images/main_bg_top.gif');
    background-repeat:no-repeat;
    padding:10px;
    padding-top:0px;
    margin-bottom:0px;
    padding-bottom:0px;
}

html, body {
    min-height: 100%;
}
body {
    background-color:#e5e8f0;
    margin:0px;
    padding:0px;
    background-image:url('../images/body_bg.jpg');
    background-repeat:repeat-x;    
}

hab schon gegoogeld, und auch yahooed aber leider ohne erfolg zu meinem Problem eine Lösung zu finden :(

Gruß
Gunah

PS: hab eine Browserweiche für IE6 / IE7 / Opera... das der Normale CSS Code
 
ah danke habe nun relative genommen, damit geht es,

nur Lüppt min-height:100% nicht mehr, also das die Seite eine mindest höhe von 100% hat

(musst auch noch in container2 margin-left:-10px machen (im IE 15) damit er es an der richtigen stelle anzeigt...)

habe geguckt im Netzt steht, das es nur geht, wenn alle Boxen in dennen die 100% Box drin ist auch diese werte haben, dieses haben Sie auch trotzdem geht es nicht :(

Gruß
Gunah
 
Zuletzt bearbeitet:
Status
Nicht offen für weitere Antworten.
Zurück