No final do meu site fica um espaço branco entre o footer e o final da página, nas resoluções menores o footer fica no fim normalmente. Alguém sabe como resolver este problema? #bottom-container{ width:100%; height:auto; background-color:#65696e; float:left; padding-bottom: 15px; } #footer-content{ width:960px; height:120px; background-image:url(images/footer-glow.png); background-repeat:no-repeat; background-position:top center; margin:0px auto; } LINK DO SITE: http://mgdownhill.com.br/ Valeu EDIT: Resolvido, usando http://ryanfait.com/resources/footer-stick...bottom-of-page/ CSS: * {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
HTML:
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>