Problem
I am using this implementation of sticky CSS footer. It does:
html,body{
height:100%;
}
I use (I would like) to use a repeating background, however it height:100%causes this problem:
(image from another question with unsatisfactory answers)
I understand that the image gets the size of the window when rendering and thus never exceeds it.
Question
Is it possible to continue to use the existing CSS sticky footer selection with a repeating background image that is fully displayed on long pages.
OR
Is there another CSS sticky footer option that supports repeating backgrounds?
For reference
<div id="wrap">
<div id="header">Header text</div>
<div id="main">
</div>
</div>
<div id="footer">Footer Text</div>
CSS
* {margin:0;padding:0;}
html, body {height: 100%;}
#wrap {min-height: 100%;}
#main {overflow:auto;
padding-bottom: 180px;}
#footer {position: relative;
margin-top: -180px;
height: 180px;
clear:both;}