Уважаемые, прошу помочь, сделал футер прижатый, но когда появляется скролл, то футер оказывается по середине страницы
<html>
<body>
<div id="wrapper">
<div id="content">
</div>
</div>
<div id="footer_conteiner">
<div id="footer">
</div>
</div>
</body>
</html>
#content {
width:680px;
word-wrap: break-word;
float:left;
margin-top:20px;
padding-bottom:50px;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
min-height: 100%;
height: auto !important;
height: 100%;
position: relative;
font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
}
#footer_conteiner {
height: 40px;
}
#footer {
position: absolute;
bottom: 0px;
height: 40px;
background: green;
text-align: center;
padding-top: 3px;
width: 100%;
}