Moin mee,
Also ich hab da mal n kleinen Test gemacht. Das funktioniert super, ausser eben, dass der Footer beim zuschieben über den Content Layer kommt.
So (footer hier 25px hoch):
html,
body {
height: 100%;
}
#content {
width: 100%;
position: relative;
min-height: 100%;
}
* html #content { /* IE Hack for 100% height */
height: 100%;
}
#footer {
position: relative;
bottom: 0;
left: 0;
margin: -25px auto 0 auto;
width: 100%;
height: 25px;
}
XHTML code war richtig so. Vertikalen Abstand zwischen content u. footer z.B. über simplen footerspacer oder margin-bottom von #content. Horizontale Ausrichtungen über content u. footer oder über die Elemente, die du da reinwirfst. Alles klar?
Gruß
Antipitch