I'm looking to stretch a background image along the left margin of my webpage.
Here's the CSS I'm using:
body, html{
height:100%;
}
#content{
background:url(../images/leftBorder.png);
background-repeat:repeat-y;
height:100%;
}
This setup works well until the content exceeds the page fold line, causing an issue when scrolling down:
The entire content is contained within a div with the ID of "content".
Any thoughts on how to address this?