JA JA Hier bin ich wieder. Ich habs mal ausprobiert aber der Browser hats mir dan mitten rein gesetzt.
<div id="container">
<div id="content">...</div>
<div id="footer">...</div>
</div>
And your style rules look like:
#container {
position: relative;
}
#footer {
position: absolute;
bottom: 0;
}
However, absolutely positioned elements are
so lautet der code auf der seite.
Ich habs dann so probiert.
<html>
<head>
<title>...</title>
<style type="text/css">
#footer {
position: absolute;
bottom: 0;
}
</style>
</head>
<body>
(Dann den Inhalt und unten dan)
<div id="footer">...</div>
</body>
</html>
SO hab ichs probiert, was ist da falsch dran??