A question has arisen regarding the implementation of an inner shadow effect for a background picture that is set to repeat. The current code used for the shadow effect is as follows:
background: #202020 url(images/img01.jpg) repeat;
-moz-box-shadow: inset 0 0 200px #000;
-webkit-box-shadow: inset 0 0 200px #000;
box-shadow: inset 0 0 200px #000;
Everything works fine when the content fits the browser window without a scroll bar. However, when the content is longer and requires scrolling, the background shadow appears to be cut off at the end.
The question at hand is how to achieve an inner shadow effect for the full background, even when a long scroll bar is present.