My problem is this. I have a DIV which replicates an image using CSS3. This Div needs to be repeated at a set interval down one side of the page. I.e. every 200px. Is there a way to for this to be automated. Normally I would use a repeating bgimage but in this case no images are allowed. I also could repeat the div each time but it’s a large page that will be updated frequently with more content.
Any ideas would be very much appreciated.
I would do it like this:
document height / element height + 200px = x
place the element X times in to you document.
That’s it.
Spoken in jQuery this looks like that:
try it out here: http://jsfiddle.net/aF68z/
PS: At least try something on your own next time.