Hallo zusammen,
ich möchte einen Footer am unteren Seitenrand mit KEINEM Abstand zum Fensterrand absolut plazieren. Je nach Fenstergröße ist im IE 1px Abstand zum Fensterrand. Ist das IE-Fenster maximiert, tritt dieses Problem nicht auf.
Wie kann ich diesen Fehler beheben?
Im foldenden ein kleines Beispiel.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>F O O T E R</title>
<style type="text/css">
html body {
color:#000;
background-color:#ee0000;
margin:0;
padding:0;
}
#footer {
position:absolute;
bottom:0;
left:0;
width:100%;
height:30px;
background-color:#eee;
margin:0;
padding:0;
border:0;
text-align:center;
}
</style>
</head>
<body>
<div id="footer">
<p>F O O T E R</p>
</div>
</body>
</html>
Danke für Eure Lösung(en)!
Lonni