Hallo Leute!
Ich habe folgendes Problem im IE6.
Ich habe einen relativen Div. Darin befindet sich ein absoluter Div der "bottom" ausgerichtet sein soll.
Mein Problem ist, das im IE6 der absolute div zwar bottom ausgerichtet ist, jedoch bleibt unten ein Rand von einem Pixel.
Im Firefox habe ich disen 1px Rand nicht, so sollte es auch sein.
Kann mir jemand helfen?
Danke
tempo74
Hier der Quellcode:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Nicht noch ein IE Bug</title>
<style>
.container {
position: relative;
width: 600px;
height: 301px;
margin: auto;
background-color: #000000;
}
.bottom {
position: absolute;
bottom:0px;
left:50px;
height:20px;
width:500px;
background-color: #FFFFFF;
}
</style>
</head>
<body>
<div class="container">
<div class="bottom"></div>
</div>
</body>
</html>