philip0908
Mitglied
Hey, weiß jemand warum sich der Footer nicht nacht unten verschiebt?
http://pastebin.com/jvCZgVPn
http://pastebin.com/jvCZgVPn
Code:
<html>
<head>
<style type="text/css">
html, body { margin:0; padding:0; height: 100%; }
#umhang {
height:100%;
background:black;
}
#umhang_innen {
min-height:100%;
background:yellow;
}
#layer_left {
float:left;
width:500px;
height:10000px;
background:blue;
}
#layer_right {
float:left;
width:200px;
height:800px;
background:green;
}
#footer {
margin-top:-50px;
height:50px;
background:red;
}
</style>
</head>
<body>
<div id="umhang">
<div id="umhang_innen">
<div id="layer_left">LEFT</div>
<div id="layer_right">RIGHT</div>
</div>
</div>
<div id="footer">FOOTER</div>
</body>
</html>