I have a simple css addition that I'll do to stamp a large warning across a document. This works perfectly fine in the browser (although printing background images is a separate problem). But when I have Prince turn it into a PDF it doesn't repeat across pages. On the first page it looks perfectly fine.
Example CSS:
.draft {
position: absolute;
width: 100%;
height: 100%;
opacity: 0.5;
background-image: url(data:image/png;base64, ....SNIP....); <!-- Too large
background-repeat: repeat-y;
background-size: 100% auto;
-webkit-print-color-adjust: exact;
}
Perhaps this is a bug. Perhaps I'm missing something that would continue it across page boundaries.
Any idea?
Example CSS:
.draft {
position: absolute;
width: 100%;
height: 100%;
opacity: 0.5;
background-image: url(data:image/png;base64, ....SNIP....); <!-- Too large
background-repeat: repeat-y;
background-size: 100% auto;
-webkit-print-color-adjust: exact;
}
Perhaps this is a bug. Perhaps I'm missing something that would continue it across page boundaries.
Any idea?