Похоже, что-то, что может быть обработано с помощью JavaScript.Лично я бы использовал jQuery и что-то вроде:
$(document).ready(function() { //Runs at page load
$(".ID_OF_IMAGE").each(function() { //calls the anon function for the id tag specified
/*sets the height to the max of three methods of height measurement
diff browsers detect doc height differently.*/
this.height = Math.max(
//gets the larger between doc height and body height
Math.max(document.body.clientHeight, document.documentElement.clientHeight),
Math.max(document.body.offsetHeight, document.documentElement.offsetHeight),
Math.max(document.body.scrollHeight, document.documentElement.scrollHeight))
});
});
В качестве альтернативы вы можете установить изображение в качестве фона для div или тела и использовать свойство repeat-y css.
body { //also works for div's
background-image:url('image.jpg');
background-repeat:repeat-y;
}
-SB