I want the same background image on every printed page. Anytime a page is needed because of overflow, it should have the same background image as the previous one.
I've been trying to do this
@page {
size: US-Letter portrait;
background-image: url("something.jpg");
padding: 3in .5in .75in .5in;
}
But this doesn't work on any browser. Is this something that is simply not possible? Or is there some more tricks to it that I haven't yet found?