I am trying to add the below style for watermark.The watermark appears only in the first page when i try to print in Chrome.It works fine in firefox and IE.
<style type="text/css">
#watermark {
color: #d0d0d0;
font-size: 90pt;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
position: fixed;
width: 100%;
height: 100%;
margin: 0;
z-index: 100;
opacity: 0.5;
}
</style>
<div id="watermark">
<p>WaterMark</p>
</div>
Is there any way which can be used to print the watermark in all pages
Take a look at this fiddle: http://jsfiddle.net/gskzkb8g/