I have a wrapper positioned to center with an y-repeated background image:
<body>
<div id="wrapper">
...some content
</div>
</body>
#wrapper{
width: 900px;
margin: 0 auto 0 auto;
background-image: url(image.jpg) 250px 0px repeat-y;
}
Problem: when the window size is higher than the wrapper’s height inherited from its content, the image obviously doesn’t repeat on y-axis all the way to the bottom of the window.
I’ve used jQuery to dynamically apply inline CSS style to the wrapper according to actual document height (when DOM is ready and on window resize event):
$(function(){
$('#wrapper').css({'height':($(document).height())+'px'});
$(window).resize(function(){
$('#wrapper').css({'height':($(document).height())+'px'});
});
});
The problem with this approach is that every time one extends the window height to a size larger than the previously resized largest size, the document height extends by this difference, essentially making the wrapper DIV infinite if you keep resizing the window infinitely and have a infinite vertical display space.
On a typical 30″ inch display with 1600px height, when user opens the website with a window height 1000px and wrapper is 800px high, the jQuery above sets the height to 1000px tiling the background image correctly. At this point, once the user extends the window size to e.g 1400px, the 1400px is a new document size “remembered default” and doesn’t update itself even if the user resizes his window back to the original 1000px height, adding 400px to the scrollbar height at the bottom.
How to fix this?
UPDATE: (window).height doesn’t seem to work, because window height is a viewport height. When your viewport is smaller than the content and you scroll it, the wrapper always stays the size of the viewport and doesn’t extend to the bottom of the current viewport position.
I figured it out myself with the help of someone’s answer. But he deleted it for some reason.
Here’s the solution:
Listen on (window).resize event and ONLY apply inline CSS height IF the viewport is larger than the height of #truecontent, otherwise keep intact