Hi,
I'm french and I have a problem to generate a PDF with a transparent watermark in background on every pages.
I've succeed to add a watermark in background but not on every pages.
In my HTML file I've added :
<div id="watermark">watemark</div>
And I've added also :
<style>
#watermark {
position: fixed;
top: 35%;
left: 105px;
transform: rotate(45deg);
transform-origin: 50% 50%;
opacity: .3;
font-size: 120px;
color: white;
width: 480px;
text-align: center;
background-color: black;
}
</style>
But it's works only for the first page...
I read a lot of topics where this code works very well but it doesn't works for me and I don't find why.
Someone can help me ?
Thank you and I'm sorry for my english.